mirror of https://github.com/sveltejs/svelte
28 lines
572 B
28 lines
572 B
import AwaitBlock from './AwaitBlock';
|
|
import Comment from './Comment';
|
|
import Component from './Component';
|
|
import Document from './Document';
|
|
import EachBlock from './EachBlock';
|
|
import Element from './Element';
|
|
import IfBlock from './IfBlock';
|
|
import MustacheTag from './MustacheTag';
|
|
import RawMustacheTag from './RawMustacheTag';
|
|
import Slot from './Slot';
|
|
import Text from './Text';
|
|
import Window from './Window';
|
|
|
|
export default {
|
|
AwaitBlock,
|
|
Comment,
|
|
Component,
|
|
Document,
|
|
EachBlock,
|
|
Element,
|
|
IfBlock,
|
|
MustacheTag,
|
|
RawMustacheTag,
|
|
Slot,
|
|
Text,
|
|
Window
|
|
};
|