8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
import { Styles } from '../types/style';
|
|
|
|
declare function animation(
|
|
...args: Array<Array<string | number> | string | number>
|
|
): Styles;
|
|
|
|
export default animation;
|