Urara-Blog/node_modules/.pnpm-store/v3/files/a4/4e1b85f564e978bfb87620a67aa4f63cda7cfd0ef05afffc39e08aa473d5ff196876cbd7f1d0063f518d30e824d0a19dcfef133f1f251c569414715ad22f0e
2022-08-14 01:14:53 +08:00

14 lines
488 B
Text

import Node from './shared/Node';
import Component from '../Component';
import TemplateScope from './shared/TemplateScope';
import { INode } from './interfaces';
import { TemplateNode } from '../../interfaces';
export default class Text extends Node {
type: 'Text';
data: string;
synthetic: boolean;
constructor(component: Component, parent: INode, scope: TemplateScope, info: TemplateNode);
should_skip(): any;
keep_space(): boolean;
within_pre(): boolean;
}