UNPKG

@sirhc77/postman-sdk-gen

Version:

Generate a fully-typed TypeScript SDK from a Postman collection, with support for Axios or Fetch, folder-based namespacing, and auto-inferred types.

10 lines (9 loc) 266 B
export interface SdkGenConfig { collection: string; output: string; clientName: string; useFetch: boolean; singleFile: boolean; quiet: boolean; } export declare function loadConfig(collectionArg: string, cliOpts: any): Promise<SdkGenConfig>;