interface PDFBooleanType {
    destroy: () => Promise<void>;
    isIdentical: (otherBool: PDFBooleanType) => Promise<boolean>;
    options: Options;
}

Implemented by

Properties

destroy: () => Promise<void>

Destroy the current object.

Type declaration

    • (): Promise<void>
    • Returns Promise<void>

isIdentical: (otherBool: PDFBooleanType) => Promise<boolean>

Compare with another object.

Type declaration

    • (otherBool: PDFBooleanType): Promise<boolean>
    • Parameters

      Returns Promise<boolean>

      Return true if the two objects are the same, otherwise return false.

options: Options