mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import { ChunkId } from '../../Upload/ChunkId'
|
|
|
|
export type UploadFileChunkDTO = {
|
|
data: Uint8Array
|
|
chunkId: ChunkId
|
|
userUuid: string
|
|
resourceRemoteIdentifier: string
|
|
}
|