mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 08:29:14 +08:00
11 lines
432 B
Text
11 lines
432 B
Text
import Node from './shared/Node';
|
|
import { Children } from './shared/map_children';
|
|
import Component from '../Component';
|
|
import TemplateScope from './shared/TemplateScope';
|
|
import { TemplateNode } from '../../interfaces';
|
|
export default class Title extends Node {
|
|
type: 'Title';
|
|
children: Children;
|
|
should_cache: boolean;
|
|
constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode);
|
|
}
|