[thedevbox]
loading
export interface ThedevboxConfig {
id: number;
name: string;
private: boolean;
tools: Array<Tools>;
}
export interface Tools {
id: string;
category: string;
}The JSON to TypeScript tool infers type shapes from example payloads so API responses, config files, and fixtures can become typed interfaces faster.