Interface CommonAdapterInterface

interface CommonAdapterInterface {
    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;
}

Hierarchy (View Summary)

Methods

  • Parameters

    • opts: ExtractContentForCheckOpts

    Returns ContentExtractionResult | Promise<ContentExtractionResult>

  • Parameters

    • checkResult: SuccessfulCheckResult

    Returns void