1
0
Fork 0
freesewing/dist/config/config.d.ts

19 lines
375 B
TypeScript
Raw Normal View History

2018-07-10 12:20:53 +00:00
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;