mirror of
https://github.com/alangrainger/immich-public-proxy.git
synced 2025-01-07 17:16:45 +01:00
9 lines
127 B
TypeScript
9 lines
127 B
TypeScript
|
export interface SharedLinkAsset {
|
||
|
id: string;
|
||
|
}
|
||
|
|
||
|
export interface SharedLink {
|
||
|
key: string;
|
||
|
assets: SharedLinkAsset[]
|
||
|
}
|