UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

8 lines (7 loc) 271 B
/// <reference types="react" /> import { TimelinePosition } from "./timeline.shared"; interface TimelineContextValue { position?: TimelinePosition; } declare const TimelineContext: import("react").Context<TimelineContextValue>; export default TimelineContext;