mirror of
https://github.com/immich-app/immich.git
synced 2025-12-22 01:11:20 +03:00
9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
|
|
const broadcast = new BroadcastChannel('immich');
|
||
|
|
|
||
|
|
export function cancelImageUrl(url: string) {
|
||
|
|
broadcast.postMessage({ type: 'cancel', url });
|
||
|
|
}
|
||
|
|
export function preloadImageUrl(url: string) {
|
||
|
|
broadcast.postMessage({ type: 'preload', url });
|
||
|
|
}
|