a0ff2014c3
Adds a reusable Callback type that is applied to emitter.ts for improved readability/simplicity.
2 lines
48 B
TypeScript
2 lines
48 B
TypeScript
export type Callback<T, R = void> = (t: T) => R
|