Interface PDFLoadInputInternal

Inputs handed to PDFLoader.loadfileData is the PDF byte stream (ArrayBuffer or Uint8Array), sceneModel is the target the loader populates.

interface PDFLoadInput {
    fileData: Uint8Array<any> | ArrayBuffer;
    sceneModel: SceneModel;
}

Properties

Properties

fileData: Uint8Array<any> | ArrayBuffer
sceneModel: SceneModel