fork of hey-api/openapi-ts because I need some additional things
1export interface IOutput {
2 /**
3 * The main content of the file to output.
4 *
5 * A raw string representing source code.
6 *
7 * @example "function foo(): void {\n // implementation\n}\n"
8 */
9 content: string;
10 /**
11 * Logical output path (used for writing the file).
12 *
13 * @example "models/user.ts"
14 */
15 path: string;
16}