Sha256: a49a5da01d89c601105ad369197b68367e25a98a272f971cbe4343cc81ec87d5
Contents?: true
Size: 376 Bytes
Versions: 5
Compression:
Stored size: 376 Bytes
Contents
import { NodeBase } from './shared/Node'; import ExecutionPathOptions from '../ExecutionPathOptions'; import { NodeType } from './NodeType'; export default class TemplateElement extends NodeBase { type: NodeType.TemplateElement; tail: boolean; value: { cooked: string; raw: string; }; hasEffects(_options: ExecutionPathOptions): boolean; }
Version data entries
5 entries across 5 versions & 2 rubygems