export type Off =
  | false
  | 0
  | null
  | undefined
  | "0"
  | "false"
  | "undefined"
  | "off";
