10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
// Store to control the Help Drawer state globally
|
|
// Using Svelte 5 runes
|
|
|
|
export const helpStore = $state({
|
|
isOpen: false,
|
|
open() { this.isOpen = true; },
|
|
close() { this.isOpen = false; },
|
|
toggle() { this.isOpen = !this.isOpen; }
|
|
});
|