svelte
Version:
Cybernetically enhanced web apps
19 lines (18 loc) • 1.21 kB
TypeScript
export declare function noop(): void;
export declare const identity: (x: any) => any;
export declare function assign<T, S>(tar: T, src: S): T & S;
export declare function is_promise<T = any>(value: any): value is PromiseLike<T>;
export declare function add_location(element: any, file: any, line: any, column: any, char: any): void;
export declare function run(fn: any): any;
export declare function blank_object(): any;
export declare function run_all(fns: any): void;
export declare function is_function(thing: any): thing is Function;
export declare function safe_not_equal(a: any, b: any): boolean;
export declare function not_equal(a: any, b: any): boolean;
export declare function validate_store(store: any, name: any): void;
export declare function subscribe(component: any, store: any, callback: any): void;
export declare function create_slot(definition: any, ctx: any, fn: any): any;
export declare function get_slot_context(definition: any, ctx: any, fn: any): any;
export declare function get_slot_changes(definition: any, ctx: any, changed: any, fn: any): any;
export declare function exclude_internal_props(props: any): {};
export declare function once(fn: any): (this: any, ...args: any[]) => void;