UNPKG

calcium-lang

Version:
8 lines (7 loc) 262 B
import * as JSONElementType from "../parser/jsonElement"; import * as Kw from "../keyword"; /** * a JSON array that represents one line in Calcium */ declare type Statement = [number, unknown[], Kw.Command, ...JSONElementType.Any[]]; export default Statement;