UNPKG

@himenon/openapi-typescript-code-generator

Version:
17 lines (15 loc) 948 B
declare const parameterName: (operationId: string) => string; declare const requestBodyName: (operationId: string) => string; declare const argumentParamsTypeDeclaration: (operationId: string) => string; declare const responseName: (operationId: string, statusCode: string) => string; declare const requestContentType: (operationId: string) => string; declare const responseContentType: (operationId: string) => string; declare const isAvailableVariableName: (text: string) => boolean; declare const isFirstCharacterIsValidText: (text: string) => boolean; declare const escapeText: (text: string) => string; /** TODO escapeTextにマージする */ declare const escapeText2: (text: string) => { escaped: boolean; text: string; }; export { argumentParamsTypeDeclaration, escapeText, escapeText2, isAvailableVariableName, isFirstCharacterIsValidText, parameterName, requestBodyName, requestContentType, responseContentType, responseName };