mirror of
https://github.com/ente-io/ente.git
synced 2025-08-07 23:18:10 +00:00
Doc
This commit is contained in:
parent
2b52616ba5
commit
b931dac18b
@ -27,6 +27,13 @@ export interface CollectionUser {
|
||||
}
|
||||
|
||||
export interface EncryptedCollection {
|
||||
/**
|
||||
* The collection's globally unique ID.
|
||||
*
|
||||
* The collection's ID is a integer assigned by remote as the identifier for
|
||||
* an {@link Collection} when it is created. It is globally unique across
|
||||
* all collections on an Ente instance (i.e., it is not scoped to a user).
|
||||
*/
|
||||
id: number;
|
||||
owner: CollectionUser;
|
||||
// collection name was unencrypted in the past, so we need to keep it as optional
|
||||
|
@ -66,11 +66,11 @@ export type EncryptedMagicMetadata = MagicMetadataCore<string>;
|
||||
|
||||
export interface EncryptedEnteFile {
|
||||
/**
|
||||
* The file's ID.
|
||||
* The file's globally unique ID.
|
||||
*
|
||||
* The file's ID is a integer assigned by remote that is unique across all
|
||||
* files stored by an Ente instance. That is, the file ID is a global unique
|
||||
* identifier for this {@link EnteFile}.
|
||||
* The file's ID is a integer assigned by remote as the identifier for an
|
||||
* {@link EnteFile} when it is created. It is globally unique across all
|
||||
* files stored by an Ente instance, and is not scoped to the current user.
|
||||
*/
|
||||
id: number;
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user