6 lines
125 B
TypeScript
6 lines
125 B
TypeScript
|
import { IRawStyle } from './IRawStyle';
|
||
|
/**
|
||
|
* Keyframe definition.
|
||
|
*/
|
||
|
export type IKeyframes = Record<string, IRawStyle>;
|