UNPKG

@n3okill/utils

Version:
7 lines (6 loc) 282 B
/** * Throws an error if property is not defined in the given object * @param obj Object where to search for the property * @param name The name of the property can be on the form "a.b.c[1].d" */ export declare function isPropertyDefinedWithThrow(obj: any, name: string): void;