mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
import { ChunkId } from '../../Upload/ChunkId'
|
|
|
|
export type UploadFileChunkDTO = {
|
|
data: Uint8Array
|
|
chunkId: ChunkId
|
|
ownerUuid: string
|
|
resourceRemoteIdentifier: string
|
|
resourceUnencryptedFileSize: number
|
|
}
|