@nestia/sdk
Version:
Nestia SDK and Swagger generator
9 lines (8 loc) • 517 B
TypeScript
import { type Node } from "@ttsc/factory";
import { INestiaProject } from "../../structures/INestiaProject";
import { ITypedHttpRoute } from "../../structures/ITypedHttpRoute";
import { ImportDictionary } from "./ImportDictionary";
export declare namespace SdkHttpSimulationProgrammer {
const random: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => Node;
const simulate: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => Node;
}