UNPKG

@sentio/truffle-fetch-and-compile

Version:
17 lines (16 loc) 710 B
import type { Recognizer, FailureType, FetchExternalErrors, FetchAndCompileResult } from "./types"; export declare class DebugRecognizer implements Recognizer { private bugger; private addressesToSkip; private badFetchAddresses; private badCompileAddresses; private badFetchers; constructor(bugger: any); getErrors(): FetchExternalErrors; private getUnrecognizedAddresses; isAddressUnrecognized(address: string): boolean; getAnUnrecognizedAddress(): string | undefined; markUnrecognizable(address: string, reason?: FailureType): void; markBadFetcher(fetcherName: string): void; addCompiledInfo(info: FetchAndCompileResult, address: string): Promise<void>; }