XciD's picture
XciD HF staff
initial commit
8969f81
/**
* 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>;