@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
13 lines (12 loc) • 544 B
TypeScript
import ts from 'typescript';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { TypedHelper, TypedHelperOptions } from '../types';
export interface ObjectBindingHelperOptions extends TypedHelperOptions {
readonly value?: ts.Node;
}
export declare class ObjectBindingHelper extends TypedHelper<ts.ObjectBindingPattern> {
private readonly value?;
constructor(options: ObjectBindingHelperOptions);
emit(sb: ScriptBuilder, node: ts.ObjectBindingPattern, optionsIn: VisitOptions): void;
}