# Pastebin zpKAiNCe /* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * the id of the data */ export type Id = number; /** * the name of your favourite band */ export type Name = string; export type Data = DataRow[]; /** * The response of the /data api call */ export interface DataResponse { data: Data; [k: string]: unknown; } /** * a row of data */ export interface DataRow { id: Id; name: Name; [k: string]: unknown; }