mirror of
https://github.com/taigrr/wails.git
synced 2026-04-02 05:08:54 -07:00
13 lines
233 B
JavaScript
13 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);
|
|
}
|