File size: 168 Bytes
8969f81
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
/**
 * Hf helper type for a dictionary-like object with arbitrary keys.
 */
declare interface Obj<T = any> {
	[key: string]: T
}

type Extend<T, U = any> = T & Obj<U>;