19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
/**
|
|
* Used to initialize the stores for the `Modal`, `Toast`, and `Drawer` utilities.
|
|
*
|
|
* @example
|
|
* ```svelte
|
|
* <!-- App's root +layout.svelte -->
|
|
* <script>
|
|
* import { initializeStores, Toast, Modal, Drawer } from "@skeletonlabs/skeleton";
|
|
*
|
|
* initializeStores();
|
|
* </script>
|
|
*
|
|
* <Toast />
|
|
* <Modal />
|
|
* <Drawer />
|
|
* ```
|
|
*/
|
|
export declare function initializeStores(): void;
|