@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
12 lines (11 loc) • 416 B
TypeScript
import ts from 'typescript';
export declare class CompilerDiagnostic implements ts.Diagnostic {
readonly messageText: string;
readonly code: number;
readonly category: ts.DiagnosticCategory;
readonly start: number;
readonly length: number;
file: ts.SourceFile;
readonly source: string;
constructor(node: ts.Node, messageText: string, code: number, category: ts.DiagnosticCategory);
}