Type alias SBStorageQuery

SBStorageQuery: {
    type: "clear";
} | {
    type: "delete";
} | {
    data: DocumentScannerScanResponse;
    type: "storeDocumentScannerResponse";
} | {
    type: "getDocumentScannerResponses";
} | {
    data: number;
    type: "getDocumentScannerResponse";
} | {
    data: SBStoreImage[];
    type: "storeImages";
} | {
    data: number[];
    type: "getImages";
} | {
    data: {
        documentId: number;
    };
    type: "deleteImages";
} | {
    type: "getSBDocumentIds";
} | {
    data: SBDocumentData;
    type: "insertSBDocument";
} | {
    data: number;
    type: "getSBDocument";
} | {
    data: number;
    type: "deleteSBDocument";
} | {
    data: SBStorePageImage;
    type: "insertSBPageImage";
} | {
    data: number;
    type: "getSBPageImage";
} | {
    data: number[];
    type: "deleteSBPageImages";
} | {
    data: SBStoreBuffer;
    type: "insertImageBuffer";
} | {
    data: number;
    type: "getImageBuffer";
}

Type declaration

  • type: "clear"

Type declaration

  • type: "delete"

Type declaration

Type declaration

  • type: "getDocumentScannerResponses"

Type declaration

  • data: number
  • type: "getDocumentScannerResponse"

Type declaration

Type declaration

  • data: number[]
  • type: "getImages"

Type declaration

  • data: {
        documentId: number;
    }
    • documentId: number
  • type: "deleteImages"

Type declaration

  • type: "getSBDocumentIds"

Type declaration

Type declaration

  • data: number
  • type: "getSBDocument"

Type declaration

  • data: number
  • type: "deleteSBDocument"

Type declaration

Type declaration

  • data: number
  • type: "getSBPageImage"

Type declaration

  • data: number[]
  • type: "deleteSBPageImages"

Type declaration

Type declaration

  • data: number
  • type: "getImageBuffer"

Generated using TypeDoc