File size: 232 Bytes
bc20498
 
 
 
 
 
1
2
3
4
5
6
7
import type { SvelteHTMLNode } from "./html";
import type { SvelteScriptNode } from "./script";
export * from "./common";
export * from "./html";
export * from "./script";
export type SvelteNode = SvelteHTMLNode | SvelteScriptNode;