Urara-Blog/node_modules/.pnpm-store/v3/files/7a/525c9e9b2d290b058a40cde6766eb0712f73febc10767f8518346685404efe1577ecd7c3ed471cc9b6674658e7d1feb01ae38f77587b6f283a115b765435ca
2022-08-14 01:14:53 +08:00

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;
}