@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
10 lines • 390 B
TypeScript
/**
*
* @param {object} object
* @param {string} path separated with forward slash "/"
* @param {function} [missingPropertyHandler] Allows custom handling of missing properties
* @returns {*}
* @throws {Error} if a path can not be resolved
*/
export function resolvePath(object: object, path: string, missingPropertyHandler?: Function): any;
//# sourceMappingURL=resolvePath.d.ts.map