UNPKG

@kcirtaptrick/framer-motion

Version:

A simple and powerful React animation library

8 lines (7 loc) 234 B
import { IProjectionNode } from "./types"; export interface NodeGroup { add: (node: IProjectionNode) => void; remove: (node: IProjectionNode) => void; dirty: VoidFunction; } export declare function nodeGroup(): NodeGroup;