mirror of
https://github.com/immich-app/immich.git
synced 2025-12-23 09:15:05 +03:00
5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
|
|
import { writable } from 'svelte/store';
|
||
|
|
import type { ServerInfoResponseDto } from '@api';
|
||
|
|
|
||
|
|
export const serverInfoStore = writable<ServerInfoResponseDto>();
|