You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;
};