Files
typebox/docs/values/default.md

858 B

Overview | Installation | Usage | Types | Values | Syntax | TypeRegistry | TypeCheck

Default

Use Default to generate missing properties on a value using default schema annotations if available. This function does not check the value and returns an unknown type. You should Check the result before use. Default is a mutable operation. To avoid mutation, Clone the value first.

const T = Type.Object({
  x: Type.Number({ default: 0 }),
  y: Type.Number({ default: 0 }),
});

const X = Value.Default(T, null); // const 'X = null - non-enumerable

const Y = Value.Default(T, {}); // const 'Y = { x: 0, y: 0 }

const Z = Value.Default(T, { x: 1 }); // const 'Z = { x: 1, y: 0 }

Back to Home