UNPKG

calcium-js

Version:
8 lines (7 loc) 283 B
export type Primitive = number | string | boolean | null; export type ArrayLiteral = [Element[]]; export type ObjectLiteral = { [key: string]: Element; }; export type Operation = [string, ...Element[]]; export type Element = Primitive | ArrayLiteral | ObjectLiteral | Operation;