7 lines
254 B
TypeScript
7 lines
254 B
TypeScript
export const FDI_CHART_DESIGNS = [
|
|
{ id: 'clinical', label: 'Clinical (gradient + roots)' },
|
|
{ id: 'wireframeSculpt', label: 'Wireframe shells (line sculpture)' },
|
|
] as const;
|
|
|
|
export type FdiChartDesignId = (typeof FDI_CHART_DESIGNS)[number]['id'];
|