frontend/.pnpm-store/v3/files/1f/a9041245ed44af6c60e9778b36e0f8a4bab1a736c4fef0943149894deab622a47001374899acae984bd5f3ecc01e12a9eb29e791b3c15739f4afb2e2c069af

20 lines
933 B
Plaintext

import { noop } from './utils';
import { T$$ } from './types';
export declare function bind(component: any, name: any, callback: any): void;
export declare function create_component(block: any): void;
export declare function claim_component(block: any, parent_nodes: any): void;
export declare function mount_component(component: any, target: any, anchor: any, customElement: any): void;
export declare function destroy_component(component: any, detaching: any): void;
export declare function init(component: any, options: any, instance: any, create_fragment: any, not_equal: any, props: any, append_styles: any, dirty?: number[]): void;
export declare let SvelteElement: any;
/**
* Base class for Svelte components. Used when dev=false.
*/
export declare class SvelteComponent {
$$: T$$;
$$set?: ($$props: any) => void;
$destroy(): void;
$on(type: any, callback: any): typeof noop;
$set($$props: any): void;
}