Urara-Blog/node_modules/.pnpm-store/v3/files/f5/8bca1b73c9fc27929de20ed29832ef8ced74aad67d4923c780df7382b8efa18c218574d44a3ea0a2be1cba8b350583dba6e40fc13d628c399af1a989ce5eac
2022-08-14 01:14:53 +08:00

13 lines
488 B
Text

import Component from '../Component';
import TemplateScope from './shared/TemplateScope';
import Node from './shared/Node';
import Let from './Let';
import { INode } from './interfaces';
export default class DefaultSlotTemplate extends Node {
type: 'SlotTemplate';
scope: TemplateScope;
children: INode[];
lets: Let[];
slot_template_name: string;
constructor(component: Component, parent: INode, scope: TemplateScope, info: any, lets: Let[], children: INode[]);
}