ink
Version:
React for CLI
10 lines (9 loc) • 360 B
TypeScript
type AnimationContextValue = {
readonly renderThrottleMs: number;
readonly subscribe: (callback: (currentTime: number) => void, interval: number) => {
readonly startTime: number;
readonly unsubscribe: () => void;
};
};
declare const animationContext: import("react").Context<AnimationContextValue>;
export default animationContext;