UNPKG

@himenon/openapi-typescript-code-generator

Version:
19 lines (16 loc) 432 B
interface Logger { /** * default: undefined (all logs) * Number of lines displayed in the latest log */ displayLogLines?: number; } interface Option { logger?: Logger; } type Validator_Logger = Logger; type Validator_Option = Option; declare namespace Validator { export type { Validator_Logger as Logger, Validator_Option as Option }; } export { type Logger as L, type Option as O, Validator as V };