mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 15:29:13 +08:00
24 lines
847 B
Text
24 lines
847 B
Text
import Node from './shared/Node';
|
|
import Attribute from './Attribute';
|
|
import Binding from './Binding';
|
|
import EventHandler from './EventHandler';
|
|
import Expression from './shared/Expression';
|
|
import Component from '../Component';
|
|
import Let from './Let';
|
|
import TemplateScope from './shared/TemplateScope';
|
|
import { INode } from './interfaces';
|
|
import { TemplateNode } from '../../interfaces';
|
|
export default class InlineComponent extends Node {
|
|
type: 'InlineComponent';
|
|
name: string;
|
|
expression: Expression;
|
|
attributes: Attribute[];
|
|
bindings: Binding[];
|
|
handlers: EventHandler[];
|
|
lets: Let[];
|
|
css_custom_properties: Attribute[];
|
|
children: INode[];
|
|
scope: TemplateScope;
|
|
constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode);
|
|
get slot_template_name(): string;
|
|
}
|