export enum BooleanErrorCode { NOT_BOOLEAN = "NOT_BOOLEAN" } export function checkBoolean (mixed : any) : undefined|BooleanErrorCode { if (typeof mixed === "boolean") { return undefined; } else { return BooleanErrorCode.NOT_BOOLEAN; } }