Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
banana-projects
/
convai
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c5ed897
convai
/
server
/
lib
/
obj.d.ts
Julien Chaumond
server
d0aa19c
over 5 years 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>;