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

Implemented by

Properties

destroy: () => Promise<void>

销毁当前对象。

Type declaration

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

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

与另一个对象进行比较。

Type declaration

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

      Returns Promise<boolean>

      如果两个对象相同则返回 true,否则返回 false。

options: Options