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.
svelte/compiler/generate/visitors/index.js

18 lines
357 B

import Comment from './Comment.js';
import EachBlock from './EachBlock.js';
import Element from './Element.js';
import ElseBlock from './ElseBlock.js';
import IfBlock from './IfBlock.js';
import MustacheTag from './MustacheTag.js';
import Text from './Text.js';
export default {
Comment,
EachBlock,
Element,
ElseBlock,
IfBlock,
MustacheTag,
Text
};