UNPKG
@gotitinc/mathlive
Version:
latest (0.98.6-hf3)
0.104.2-hf1
0.98.6-hf3
0.98.6-hf2
0.98.6-hf1
A web component for math input
github.com/arnog/mathlive
arnog/mathlive
@gotitinc/mathlive
/
dist
/
types
/
types-utils.d.ts
12 lines
(11 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/* 0.104.2-hf1 */
/** *
@internal
*/
type
Filter
<T,
Cond
, U
extends
keyof T = keyof T> = { [K
in
U]: T[K]
extends
Cond
? K :
never
; }[U];
/** *
@internal
*/
export
type
Keys
<T> =
Filter
<T,
(
...
args
:
any
[]
) =>
any
> &
string
;
export
{};