UNPKG

307 BTypeScriptView Raw
1/**
2 * @param K - key type
3 * @param V - value type
4 */
5export interface IGet<K, V> {
6 get(key: K, notfound?: V): V | undefined;
7}
8/**
9 * @param K - key type
10 * @param V - value type
11 */
12export interface IGetIn<K, V> {
13 getIn(key: K[], notfound?: V): V | undefined;
14}
15//# sourceMappingURL=get.d.ts.map
\No newline at end of file