MCPcopy
hub / github.com/Popmotion/popmotion / Step

Interface Step

packages/framesync/src/types.ts:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6export type Process = (data: FrameData) => void;
7
8export interface Step {
9 schedule: (
10 process: Process,
11 keepAlive?: boolean,
12 immediate?: boolean
13 ) => void;
14 cancel: (process: Process) => void;
15 process: (frame: FrameData) => void;
16}
17
18export enum StepId {
19 Read = 'read',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…