@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
14 lines (12 loc) • 297 B
JavaScript
import { Type } from "@sinclair/typebox";
//#region src/shared/bricks/props/boolean.ts
function boolean(title, defaultValue, options = {}) {
return Type.Boolean({
title,
default: defaultValue ?? false,
...options
});
}
//#endregion
export { boolean };
//# sourceMappingURL=boolean.js.map