JSON to TypeScriptValid
export interface Address { city: string; zip: string; } export interface RootObject { active: boolean; address: Address; id: number; name: string; tags: string[]; }
Powered by The Toolbox — free JSON to TypeScript converter