ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
6 lines (5 loc) • 303 B
TypeScript
import { InterfaceDeclarationStructure } from "./../../structures";
import { StructureToText } from "./../StructureToText";
export declare class InterfaceDeclarationStructureToText extends StructureToText<InterfaceDeclarationStructure> {
writeText(structure: InterfaceDeclarationStructure): void;
}