syndicate-js/packages/core/src/runtime/api.ts

4 lines
180 B
TypeScript
Raw Normal View History

2021-01-16 16:46:18 +00:00
export type NonEmptySkeleton<Shape> = { shape: Shape, members: Skeleton<Shape>[] };
export type Skeleton<Shape> = null | NonEmptySkeleton<Shape>;
export type Path = Array<number>;