JSON to Type
JSON ParserLịch âmĐếm ngày
Input JSON
273 chars
1
export interface Root {
  id: number;
  name: string;
  active: boolean;
  tags: string[];
  owner: RootOwner;
  projects: RootProjects[];
}

export interface RootOwner {
  name: string;
  email: string;
}

export interface RootProjects {
  title: string;
  stars: number;
  released: boolean;
}