Keyframes.d.ts 283 B

123456789
  1. import type { CSSInterpolation } from './hooks/useStyleRegister';
  2. declare class Keyframe {
  3. private name;
  4. style: CSSInterpolation;
  5. constructor(name: string, style: CSSInterpolation);
  6. getName(hashId?: string): string;
  7. _keyframe: boolean;
  8. }
  9. export default Keyframe;