mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 01:11:46 +03:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
|
|
declare module 'main' {
|
||
|
|
export function filterFileName(): I32;
|
||
|
|
export function actionAddToAlbum(): I32;
|
||
|
|
export function actionArchive(): I32;
|
||
|
|
}
|
||
|
|
|
||
|
|
declare module 'extism:host' {
|
||
|
|
interface user {
|
||
|
|
updateAsset(ptr: PTR): I32;
|
||
|
|
addAssetToAlbum(ptr: PTR): I32;
|
||
|
|
}
|
||
|
|
}
|