UNPKG

@typespec/http-server-js

Version:

TypeSpec HTTP server code generator for JavaScript

19 lines 602 B
#!/usr/bin/env node interface ScaffoldingOptions { /** * If true, the project will be generated in the current directory instead of the output directory. */ "no-standalone": boolean; /** * If true, writes will be forced even if the file or setting already exists. Use with caution. */ force: boolean; /** * If true, stop and print a help message. */ help: boolean; } export declare function scaffold(scaffoldingOptions: ScaffoldingOptions): Promise<void>; export declare function main(): Promise<void>; export {}; //# sourceMappingURL=bin.d.mts.map