Urara-Blog/node_modules/.pnpm-store/v3/files/66/501ba09a852140e49101a433ca108707c64e8b24953b7264e5dada11968dc964bd416e5ab9c0d6c71aeb4b30532cc0719067e7e2c1487c40f52399b00f99d8
2022-08-14 01:14:53 +08:00

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