Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PacmanLoader.d.ts 635B

1234567891011121314151617
  1. /** @jsx jsx */
  2. import * as React from "react";
  3. import { Keyframes } from "@emotion/serialize";
  4. import { StyleFunction, LoaderSizeMarginProps, CalcFunction, StyleFunctionWithIndex } from "./interfaces";
  5. declare class Loader extends React.PureComponent<LoaderSizeMarginProps> {
  6. static defaultProps: LoaderSizeMarginProps;
  7. ball: CalcFunction<Keyframes>;
  8. ballStyle: StyleFunctionWithIndex;
  9. s1: CalcFunction<string>;
  10. s2: CalcFunction<string>;
  11. pacmanStyle: StyleFunctionWithIndex;
  12. wrapper: StyleFunction;
  13. pac: StyleFunction;
  14. man: StyleFunction;
  15. render(): JSX.Element | null;
  16. }
  17. export default Loader;