1
0
Fork 0
freesewing/packages/brian/dist/config/config.d.ts
2019-04-19 08:31:09 +02:00

18 lines
375 B
TypeScript

declare const config: {
"parts": string[];
"measurements": string[];
"options": ({
"id": string;
"min": number;
"max": number;
"std": number;
"type"?: undefined;
} | {
"id": string;
"type": string;
"min": number;
"max": number;
"std": number;
})[];
};
export default config;