@bitjson/typedoc
Version:
Create api documentation for TypeScript projects.
9 lines (8 loc) • 426 B
TypeScript
import * as ts from 'typescript';
import { Type } from '../../models/index';
import { ConverterTypeComponent, TypeTypeConverter } from '../components';
import { Context } from '../context';
export declare class EnumConverter extends ConverterTypeComponent implements TypeTypeConverter<ts.Type> {
supportsType(context: Context, type: ts.Type): boolean;
convertType(context: Context, type: ts.Type): Type | undefined;
}