Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
coyotte508
/
bergere-enchantee
like
2
License:
other
Model card
Files
Files and versions
Community
3
refs/pr/3
bergere-enchantee
/
src
/
lib
/
utils
/
typedKeys.ts
coyotte508
HF staff
✨ Admin page for pages
3d330e9
about 2 years ago
raw
Copy download link
history
blame
Safe
103 Bytes
export
function
typedKeys<K
extends
string
>(
x
:
Record
<K,
any
>): K[] {
return
Object
.
keys
(x)
as
K[];
}