UNPKG

@redocly/cli

Version:

[@Redocly](https://redocly.com) CLI is your all-in-one OpenAPI utility. It builds, manages, improves, and quality-checks your OpenAPI descriptions, all of which comes in handy for various phases of the API Lifecycle. Create your own rulesets to make API g

17 lines 573 B
/** * Sanitizes the input path by removing invalid characters. */ export declare const sanitizePath: (input: string) => string; /** * Sanitizes the input locale (ex. en-US) by removing invalid characters. */ export declare const sanitizeLocale: (input: string) => string; /** * Retrieves platform-specific arguments and utilities. */ export declare function getPlatformSpawnArgs(): { npxExecutableName: string; sanitize: (input: string | undefined, sanitizer: (input: string) => string) => string; shell: boolean; }; //# sourceMappingURL=platform.d.ts.map