UNPKG

@scalar/api-client

Version:

the open source API testing client

9 lines 347 B
import type { OpenAPIV3, OpenAPIV3_1 } from '@scalar/openapi-types'; export type ServerVariables = { [variable: string]: ServerVariable; }; export type ServerVariableValues = { [variable: string]: string; }; export type ServerVariable = OpenAPIV3.ServerVariableObject | OpenAPIV3_1.ServerVariableObject; //# sourceMappingURL=types.d.ts.map