Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Latest commit

 

History

History
14 lines (10 loc) · 410 Bytes

File metadata and controls

14 lines (10 loc) · 410 Bytes

Home > @datashaper/workflow > Readable

Readable type

Signature:

export type Readable<T extends ResourceSchema> = {
    profile?: T['profile'] | undefined;
    name?: T['name'] | undefined;
} & Omit<T, 'profile' | 'name' | '$schema'>;