UNPKG

@upstart.gg/sdk

Version:

You can test the CLI without recompiling by running:

8 lines (5 loc) 266 B
import { Type } from "@sinclair/typebox"; type BooleanOptions = Record<string, unknown>; export function boolean(title: string, defaultValue?: boolean, options: BooleanOptions = {}) { return Type.Boolean({ title, default: defaultValue ?? false, ...options }); }