Wire gauge calc

This commit is contained in:
Daniel Dunn
2025-04-02 13:38:12 -06:00
parent 3264640a07
commit db2e1810a9
10 changed files with 198 additions and 109 deletions

View File

@@ -4,16 +4,14 @@ Used for calculator presets
*/
export interface DataTable {
[key: string]: {
title: string;
/* A JSON schema properties */
columns: {
title: string;
/* A JSON schema properties */
columns: {
[key: string]: any;
};
data: {
[key: string]: {
[key: string]: any;
};
data: {
[key: string]: {
[key: string]: any;
};
};
};
}