mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 21:59:29 +08:00
5 lines
364 B
Text
5 lines
364 B
Text
import { TemplateNode } from '../../../interfaces';
|
|
import Component from '../../Component';
|
|
import ConstTag from '../ConstTag';
|
|
import { INodeAllowConstTag, INode } from '../interfaces';
|
|
export default function get_const_tags(children: TemplateNode[], component: Component, node: INodeAllowConstTag, parent: INode): [ConstTag[], Array<Exclude<INode, ConstTag>>];
|