amis-rpc-design/node_modules/@ant-design/cssinjs/lib/Keyframes.d.ts

10 lines
283 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
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;