togezr
Version:
Better together_
21 lines • 421 B
TypeScript
export interface IGistFile {
file: string;
type: string;
language: string;
raw_url: string;
size: number;
truncated: boolean;
content: string;
}
export interface IGist {
id: string;
html_url: string;
file: {
[name: string]: IGistFile;
};
public: boolean;
truncated: boolean;
updated_at: string;
description: string;
}
//# sourceMappingURL=IGist.d.ts.map