mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
import {writable} from 'svelte/store';
|
|
|
|
/** Overlay */
|
|
export const overlayVisible = writable(false);
|
|
|
|
export function showOverlay() {
|
|
overlayVisible.set(true);
|
|
}
|
|
|
|
export function hideOverlay() {
|
|
overlayVisible.set(false);
|
|
}
|