GoScrobble/web/node_modules/react-spinners/PacmanLoader.d.ts

20 lines
706 B
TypeScript

/** @jsx jsx */
import * as React from "react";
import { SerializedStyles } from "@emotion/core";
import { Keyframes } from "@emotion/serialize";
import { LoaderSizeMarginProps, LengthType } from "./interfaces";
declare class Loader extends React.PureComponent<LoaderSizeMarginProps> {
static defaultProps: Required<LoaderSizeMarginProps>;
getSize: () => LengthType;
ball: () => Keyframes;
ballStyle: (i: number) => SerializedStyles;
s1: () => string;
s2: () => string;
pacmanStyle: (i: number) => SerializedStyles;
wrapper: () => SerializedStyles;
pac: () => SerializedStyles;
man: () => SerializedStyles;
render(): JSX.Element | null;
}
export default Loader;