typedux
Version:
Slightly adjusted Redux (awesome by default) for TS
20 lines (19 loc) • 462 B
TypeScript
export * from "./StringHelpers";
export * from "./TestHelpers";
export * from "./Guards";
export * from './VariableProxy';
export * from './PropertyChain';
export * from './UtilDecorations';
export * from "./Promise";
export * from "./Flag";
/**
* Retrieve a deep property by string
*
* dot separated .
*
* @param o
* @param path
* @param defaultValue
* @returns {T}
*/
export declare function getProperty<T>(o: any, path: string, defaultValue?: T): T;