frontend/.pnpm-store/v3/files/88/4527b5ea096fe61a068a9256de9edc57793c14921818ac01f2305c138ee423f5d807972f9435bb1ab29631533e20462ed1686c37968050e6c221d4de563f01

13 lines
434 B
Plaintext

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