openapi-axios
Version:
OpenAPI(2.0/3.0/3.1) Schema → Type-safe Axios
13 lines (12 loc) • 333 B
TypeScript
import { Arg } from './Arg';
export declare class Args {
private args;
fixedArgs: Arg[];
constructor(args: (Arg | null)[]);
private _sort;
toComments(): Record<string, unknown>;
printFormalParams(): string;
filterValidateAble(): Arg[];
printSchemaTypes(): string[];
printActualParams(): string;
}