@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
8 lines (7 loc) • 305 B
TypeScript
import ts from 'typescript';
import { CompilerHost } from './types';
export declare const getSemanticDiagnostics: ({ filePath, host, languageService, }: {
readonly filePath: string;
readonly host: CompilerHost;
readonly languageService: ts.LanguageService;
}) => ReadonlyArray<ts.Diagnostic>;