@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
13 lines (11 loc) • 359 B
JavaScript
import ts from 'typescript';
import { NodeCompiler } from '../NodeCompiler';
export class TypeAliasDeclarationCompiler extends NodeCompiler {
constructor() {
super(...arguments);
this.kind = ts.SyntaxKind.TypeAliasDeclaration;
}
visitNode(_sb, _node, _optionsIn) {
}
}
//# sourceMappingURL=TypeAliasDeclarationCompiler.js.map