8 lines
289 B
TypeScript
8 lines
289 B
TypeScript
import { type Writable } from 'svelte/store';
|
|
import type { PopupSettings } from './types.js';
|
|
export declare const storePopup: Writable<any>;
|
|
export declare function popup(triggerNode: HTMLElement, args: PopupSettings): {
|
|
update(newArgs: PopupSettings): void;
|
|
destroy(): void;
|
|
};
|