export enum NullErrorCode { NOT_NULL = "NOT_NULL" } export function checkNull (mixed : any) : undefined|NullErrorCode { if (mixed === null) { return undefined; } else { return NullErrorCode.NOT_NULL; } }