code-server/src/common/types.ts
G r e y a0ff2014c3
Add Callback type
Adds a reusable Callback type that is applied to emitter.ts for improved
readability/simplicity.
2020-08-10 21:41:46 -05:00

2 lines
48 B
TypeScript

export type Callback<T, R = void> = (t: T) => R