ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
10 lines (9 loc) • 449 B
TypeScript
import { StatementedNodeStructure } from "./../statement";
import { ImportDeclarationStructure } from "./ImportDeclarationStructure";
import { ExportDeclarationStructure } from "./ExportDeclarationStructure";
export interface SourceFileStructure extends SourceFileSpecificStructure, StatementedNodeStructure {
}
export interface SourceFileSpecificStructure {
imports?: ImportDeclarationStructure[];
exports?: ExportDeclarationStructure[];
}