@protorians/widgets
Version:
Create your web user interfaces with widgets
4 lines (3 loc) • 445 B
TypeScript
import { IAnimateGroupProps, IAnimateProps, IAttributes, IWidgetNode } from "../types/index.js";
export declare function Animate<E extends HTMLElement, A extends IAttributes>({ children, frame, from, to, duration, decimal, delay, ease, infinite }: IAnimateProps<E, A>): IWidgetNode<E, A>;
export declare function AnimateGroup({ children, frame, from, to, duration, decimal, delay, ease, infinite }: IAnimateGroupProps): IWidgetNode<any, any>[];