UNPKG

openapi-ts-generator

Version:

Based on swagger-ts-generator, this is a type script model generator specifically for services with OpenApi spec documentation.

11 lines (10 loc) 362 B
import { IGeneratorOptions } from '../models/generator-options'; import { BaseGenerator } from './base.generator'; export declare class BarrelGenerator extends BaseGenerator<{ fileNames: string[]; }> { readonly GeneratorName = "BarrelGenerator"; private readonly tsRegex; constructor(options: IGeneratorOptions); generate(): string | null; }