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