You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
401 B
25 lines
401 B
2 years ago
|
declare module 'vendor/core-js/stable/symbol' {
|
||
|
}
|
||
|
|
||
|
declare module 'vendor/mutation-observer' {
|
||
|
export class MutationObserver {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
declare module 'vendor/svelte' {
|
||
|
export class SvelteComponent {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
declare module 'vendor/svelte/store' {
|
||
|
export interface Subscriber<T> {
|
||
|
}
|
||
|
export interface Unsubscriber {
|
||
|
}
|
||
|
export interface Updater<T> {
|
||
|
}
|
||
|
export interface Writable<T> {
|
||
|
}
|
||
|
}
|
||
|
|