UNPKG

@dominicstop/utils

Version:

Yet another event emitter written in typescript.

10 lines (6 loc) 170 B
export type AnyValueRepresentable = Record<string, unknown>; export interface ValueRepresentable< Value extends AnyValueRepresentable > { get asValue(): Value; };