UNPKG

@obliczeniowo/elementary

Version:
18 lines (17 loc) 523 B
export declare class Animations { /** * Rotate animation by 180 degreases * * in HTML use: * <div [@openClose]="isOpen ? 'open' : 'closed'"> * to provide animation */ static rotate180deg: import("@angular/animations").AnimationTriggerMetadata; /** * Fade in/out animation * * in HTML use: * <div [@fadeInOut]="show ? 'in' : 'out'"> */ static fadeInOut(inSeconds?: number, outSeconds?: number): import("@angular/animations").AnimationTriggerMetadata; }