UNPKG

gov-gui

Version:

Gov UI Component Library Typscript Build

8 lines (7 loc) 399 B
export interface AnimationProps { animation?: string; animationSpeed?: 'slow' | 'slower' | 'fast' | 'faster' | null | undefined; animationDelay?: '2s' | '3s' | '4s' | '5s' | null | undefined; } export declare const injectAnimationCSS: (shadowRoot?: ShadowRoot) => void; export declare const getAnimationClasses: ({ animation, animationSpeed, animationDelay }: AnimationProps) => string;