Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031
  1. export interface PrecompiledCss {
  2. name: string;
  3. styles: string;
  4. }
  5. export declare type StyleFunction = () => PrecompiledCss;
  6. export declare type StyleFunctionWithIndex = (i: number) => PrecompiledCss;
  7. export declare type CalcFunction<T> = () => T;
  8. interface CommonProps {
  9. color?: string;
  10. loading?: boolean;
  11. css?: string | PrecompiledCss;
  12. }
  13. export interface LoaderHeightWidthProps extends CommonProps {
  14. height?: number;
  15. heightUnit?: string;
  16. width?: number;
  17. widthUnit?: string;
  18. }
  19. export interface LoaderSizeProps extends CommonProps {
  20. size?: number;
  21. sizeUnit?: string;
  22. }
  23. export interface LoaderSizeMarginProps extends LoaderSizeProps {
  24. margin?: string;
  25. }
  26. export interface LoaderHeightWidthRadiusProps extends LoaderHeightWidthProps {
  27. margin?: string;
  28. radius?: number;
  29. radiusUnit?: string;
  30. }
  31. export {};