mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
20 lines
706 B
TypeScript
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;
|