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;