Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

interfaces.d.ts 859B

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 {};