Skip to content

Type Alias: Keys<T>

ts
type Keys<T> = T extends DefaultEventMap ? string | symbol : keyof T;

A utility type used to extract the keys from the event map.

Type Parameters

Type ParameterDescription
TThe event map.