25 lines
		
	
	
		
			401 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			401 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 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> {
 | |
|   }
 | |
| }
 | |
| 
 | 
