UNPKG
kbind
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Library for working with keybinds
github.com/fin-39/kbind
fin-39/kbind
kbind
/
dist
/
src
/
types
/
EnumValueToValue.d.ts
4 lines
(3 loc)
•
184 B
TypeScript
View Raw
1
2
3
4
import
{
default
as
Enum
}
from
'./Enum'
;
type
EnumValueToValue
<
EnumValue
extends
Enum
.
Value
> =
EnumValue
extends
string
?
`
${EnumValue}
`
:
EnumValue
;
export
default
EnumValueToValue
;