4 lines
244 B
TypeScript
4 lines
244 B
TypeScript
|
import Keyframes from '../models/Keyframes';
|
||
|
import { Interpolation, Styles } from '../types';
|
||
|
export default function keyframes<Props extends object = object>(strings: Styles<Props>, ...interpolations: Array<Interpolation<Props>>): Keyframes;
|