fork of hey-api/openapi-ts because I need some additional things
1/**
2 * Arbitrary metadata passed to the project's render function.
3 *
4 * Implementers should extend this interface for their own needs.
5 */
6export interface IProjectRenderMeta {
7 [key: string]: unknown;
8}
9
10/**
11 * Additional metadata about the symbol.
12 *
13 * Implementers should extend this interface for their own needs.
14 */
15export interface ISymbolMeta {
16 [key: string]: unknown;
17}