UNPKG

calcium-lang

Version:
8 lines (7 loc) 220 B
import { InternalType } from "."; import { Primitive } from "../parser/jsonElement"; /** * the type of a value that has been evaluated */ declare type RawType = Primitive | InternalType[] | {}; export default RawType;