@workday/canvas-kit-docs
Version:
Documentation components of Canvas Kit components
20 lines (16 loc) • 371 B
text/typescript
export interface SpecIt {
type: 'it';
name: string;
}
export interface SpecDescribe {
type: 'describe';
name: string;
children: (SpecDescribe | SpecIt)[];
}
export interface SpecFile {
type: 'file';
name: string;
children: (SpecDescribe | SpecIt)[];
}
// prettier-ignore
export const specifications: SpecFile[] = [/* SPEC_FILES_REPLACE_BY_WEBPACK */];