// Loaded from https://deno.land/x/cliffy@v0.18.0/command/types/boolean.ts import { boolean } from "../../flags/types/boolean.ts"; import type { ITypeInfo } from "../types.ts"; import { Type } from "../type.ts"; /** Boolean type with auto completion. Allows `true`, `false`, `0` and `1`. */ export class BooleanType extends Type { /** Parse boolean type. */ public parse(type: ITypeInfo): boolean { return boolean(type); } /** Complete boolean type. */ public complete(): string[] { return ["true", "false"]; } }