/ src / schema / option.ts
option.ts
1  import type { SchemaType } from "./type";
2  
3  export const option = <T>(value: T): null | T => {
4    (value as SchemaType).optional = true;
5    return value;
6  };