export type ComponentAPI = { name: string; fileSuffix: string; } & T; export type ComponentAPIs = { children: ComponentAPI; shorthand: ComponentAPI; }; export const componentAPIs: ComponentAPIs = { children: { name: 'Children API', fileSuffix: '' }, shorthand: { name: 'Shorthand API', fileSuffix: '.shorthand' }, };