import * as check from "../../../sync/check/boolean"; export function isBoolean (mixed : any) : mixed is boolean { return check.checkBoolean(mixed) === undefined; }