UNPKG

@scalar/oas-utils

Version:

Open API spec and Yaml handling utilities

15 lines 710 B
import type { SecuritySchemeObject } from '@scalar/workspace-store/schemas/v3.1/strict/security-scheme'; import type { Request as HarRequest } from 'har-format'; type ProcessedSecuritySchemesReturn = { headers: HarRequest['headers']; queryString: HarRequest['queryString']; cookies: HarRequest['cookies']; }; /** * Process security schemes into whichever parameters they are applicable to * * TODO: we probably want to be able to disable YOUR_SECRET_TOKEN placeholder text + or allow it to be customzied */ export declare const processSecuritySchemes: (securitySchemes: SecuritySchemeObject[]) => ProcessedSecuritySchemesReturn; export {}; //# sourceMappingURL=process-security-schemes.d.ts.map