UNPKG

feathers-trigger

Version:

Add triggers and actions to your feathers app.

6 lines (3 loc) 151 B
export type MethodName = 'create' | 'update' | 'patch' | 'remove' export type Promisable<T> = T | PromiseLike<T> export type MaybeArray<T> = T | T[]