Files
web-bak/node_modules/@ant-design/cssinjs/lib/Keyframes.d.ts
wdvipa 52c6322a24 cs
2026-02-09 16:30:59 +08:00

10 lines
283 B
TypeScript

import type { CSSInterpolation } from './hooks/useStyleRegister';
declare class Keyframe {
private name;
style: CSSInterpolation;
constructor(name: string, style: CSSInterpolation);
getName(hashId?: string): string;
_keyframe: boolean;
}
export default Keyframe;