Interface AsyncAdapterInterface

interface AsyncAdapterInterface {
    isAsync: true;
    requiresSynchronization: boolean;
    extractContentForCheck(
        opts: ExtractContentForCheckOpts,
    ): ContentExtractionResult | Promise<ContentExtractionResult>;
    getAutobindWrapperAttributes(): AutobindWrapperAttributes;
    getContent(opts: ExtractContentForCheckOpts): string;
    getFormat(): string;
    onInitFinished(result: InitResult): void;
    registerCheckCall(checkInfo: Check): void;
    registerCheckResult(checkResult: SuccessfulCheckResult): void;
    replaceRanges(
        checkId: string,
        matchesWithReplacement: MatchWithReplacement[],
    ): Promise<void>;
    selectRanges(checkId: string, matches: Match[]): Promise<void>;
}

Hierarchy (View Summary)

Implemented by

Properties

isAsync: true
requiresSynchronization: boolean

Methods

  • Parameters

    • checkId: string
    • matchesWithReplacement: MatchWithReplacement[]

    Returns Promise<void>

  • Parameters

    • checkId: string
    • matches: Match[]

    Returns Promise<void>