Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 380 Bytes

core.value.md

File metadata and controls

17 lines (11 loc) · 380 Bytes

Home > @cerbos/core > Value

Value type

Any JSON-serializable value.

Signature:

export type Value = string | number | boolean | null | {
    [key: string]: Value;
} | Value[];

References: Value