export const BOOLEAN = "boolean";

export type BooleanType = typeof BOOLEAN;

export const isBoolean = (val: unknown): val is boolean =>
  typeof val === BOOLEAN;