Spaces:
Running
Running
File size: 398 Bytes
d7291ef |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/*
Both lint and build steps fail if `generated/types.ts` is missing
We generally generate this file using a code generator.
We cannot always generate this file, so we just copy this stub file to
ensure that lint and build do not fail.
NOTE: typecheck step still fails.
*/
export interface paths {};
export interface components {};
export interface operations {};
export interface external {};
|