Update value.ts

This commit is contained in:
Corey Johnson 2025-10-16 09:53:59 -07:00
parent 79f449bc6c
commit 77f86ce829

View File

@ -1,13 +1,13 @@
import { Scope } from "./scope"
export type Value =
| { type: 'null'; value: null }
| { type: 'boolean'; value: boolean }
| { type: 'number'; value: number }
| { type: 'string'; value: string }
| { type: 'array'; value: Value[] }
| { type: 'dict'; value: Dict }
| { type: 'regex'; value: RegExp }
| { type: 'null', value: null }
| { type: 'boolean', value: boolean }
| { type: 'number', value: number }
| { type: 'string', value: string }
| { type: 'array', value: Value[] }
| { type: 'dict', value: Dict }
| { type: 'regex', value: RegExp }
| {
type: 'function',
params: string[],