src/kubernetes-ingest/swagger.ts (14 lines of code) (raw):
export interface SwaggerDoc {
paths: [string: Path];
definitions: [string: Definition];
}
export type Path = [string: Operation]
export interface Operation {
description: string;
consumes: string[];
produces: string[];
}
export interface Response {
}
export interface Definition {
}