mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 07:19:14 +08:00
12 lines
430 B
Text
12 lines
430 B
Text
import Node from './shared/Node';
|
|
import Component from '../Component';
|
|
import { Identifier } from 'estree';
|
|
import TemplateScope from './shared/TemplateScope';
|
|
import { TemplateNode } from '../../interfaces';
|
|
export default class Let extends Node {
|
|
type: 'Let';
|
|
name: Identifier;
|
|
value: Identifier;
|
|
names: string[];
|
|
constructor(component: Component, parent: Node, scope: TemplateScope, info: TemplateNode);
|
|
}
|