|
|
@ -1806,6 +1806,48 @@ declare module 'svelte/motion' {
|
|
|
|
export function tweened<T>(value?: T | undefined, defaults?: TweenedOptions<T> | undefined): Tweened<T>;
|
|
|
|
export function tweened<T>(value?: T | undefined, defaults?: TweenedOptions<T> | undefined): Tweened<T>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
declare module 'svelte/reactivity' {
|
|
|
|
|
|
|
|
export class Date extends Date {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor(...values: any[]);
|
|
|
|
|
|
|
|
#private;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Set<T> extends Set<any> {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor(value?: Iterable<T> | null | undefined);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
has(value: T): boolean;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add(value: T): this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
delete(value: T): boolean;
|
|
|
|
|
|
|
|
keys(): IterableIterator<T>;
|
|
|
|
|
|
|
|
values(): IterableIterator<T>;
|
|
|
|
|
|
|
|
entries(): IterableIterator<[T, T]>;
|
|
|
|
|
|
|
|
[Symbol.iterator](): IterableIterator<T>;
|
|
|
|
|
|
|
|
#private;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Map<K, V> extends Map<any, any> {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor(value?: Iterable<readonly [K, V]> | null | undefined);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
has(key: K): boolean;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, this_arg?: any): void;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
get(key: K): V | undefined;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
set(key: K, value: V): this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
delete(key: K): boolean;
|
|
|
|
|
|
|
|
keys(): IterableIterator<K>;
|
|
|
|
|
|
|
|
values(): IterableIterator<V>;
|
|
|
|
|
|
|
|
entries(): IterableIterator<[K, V]>;
|
|
|
|
|
|
|
|
[Symbol.iterator](): IterableIterator<[K, V]>;
|
|
|
|
|
|
|
|
#private;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
declare module 'svelte/server' {
|
|
|
|
declare module 'svelte/server' {
|
|
|
|
export function render(component: (...args: any[]) => void, options: {
|
|
|
|
export function render(component: (...args: any[]) => void, options: {
|
|
|
|
props: Record<string, any>;
|
|
|
|
props: Record<string, any>;
|
|
|
|