Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / docs-shared / lib / DocumentMetaInterface.ts
blob18614fa1c8fd5998051f147f9eb1c02e8dabcb7f
1 /** Represents the direct response object from the Docs API when retrieving the /meta endpoint */
2 export interface DocumentMetaInterface {
3   commitIds: string[]
4   createTime: number
5   modifyTime: number
6   name: string
7   volumeId: string
9   copyWithNewValues(newValues: Partial<DocumentMetaInterface>): DocumentMetaInterface
10   get uniqueIdentifier(): string
11   latestCommitId(): string | undefined