@nestia/sdk
Version:
Nestia SDK and Swagger generator
12 lines (11 loc) • 448 B
TypeScript
import { type Node } from "@ttsc/factory";
import { ITypedApplication } from "../../structures/ITypedApplication";
import { ImportDictionary } from "./ImportDictionary";
export declare namespace SdkHttpCloneProgrammer {
interface IModule {
name: string;
children: Map<string, IModule>;
programmer: null | ((importer: ImportDictionary) => Node);
}
const write: (app: ITypedApplication) => Map<string, IModule>;
}