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