timeline-state-resolver-types
Version:
Have timeline, control stuff
13 lines • 519 B
TypeScript
/** Point in time, (timestamp) */
export type Time = number;
/** Duration */
export type Duration = number;
/** Id of a timeline-object */
export type ObjectId = string;
export type InstanceId = `@${string}`;
export type ObjectReference = `#${string}`;
export type ClassReference = `.${string}`;
export type LayerReference = `$${string}`;
export type InstanceReference = `@${InstanceId}`;
export type Reference = ObjectReference | ClassReference | LayerReference | InstanceReference;
//# sourceMappingURL=types.d.ts.map