import type { ExpressionOrValue } from '../expression.js'; import type { ArgumentValue } from './argument.js'; /** 表示一个全局变量 */ export type Variable = { /** 唯一 key */ key: string; /** 变量值 */ value: ExpressionOrValue; }; /** 检查是否为 `Variable` */ export declare function isVariable(obj: unknown): obj is Variable; //# sourceMappingURL=variable.d.ts.map