Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
banana-projects
/
transformer-autocomplete
like
7
Runtime error
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
1a89f87
transformer-autocomplete
/
server
/
lib
/
obj.d.ts
XciD
HF staff
initial commit
8969f81
about 1 year ago
raw
Copy download link
history
blame
Safe
168 Bytes
/**
* 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>;