hyper-tuner-cloud/src/types/tune.ts

13 lines
185 B
TypeScript

export interface Constant {
units?: string;
value: string | number;
}
export interface Constants {
[name: string]: Constant;
}
export interface Tune {
constants: Constants;
}