@nestia/sdk
Version:
Nestia SDK and Swagger generator
11 lines (9 loc) • 332 B
text/typescript
import { INestiaConfig } from "../INestiaConfig";
import { INestiaSdkInput } from "./INestiaSdkInput";
import { IReflectOperationError } from "./IReflectOperationError";
export interface INestiaProject {
config: INestiaConfig;
input: INestiaSdkInput;
errors: IReflectOperationError[];
warnings: IReflectOperationError[];
}