babylon.uiControls.d.ts 423 B

123456789101112131415
  1. /// <reference types="react" />
  2. declare module UICONTROLS {
  3. /**
  4. * Interface used to specify creation options for color picker
  5. */
  6. export interface IColorPickerProps {
  7. }
  8. /**
  9. * Class used to create a color picker
  10. */
  11. export class ColorPicker extends React.Component<IColorPickerProps> {
  12. constructor(props: IColorPickerProps);
  13. render(): JSX.Element;
  14. }
  15. }