Skip to content

Type Alias: GetControllerHandlers<T>

ts
type GetControllerHandlers<T> = {
  [K in keyof T as T[K] extends Function ? K : never]?: string;
};

Controller handler methods type

Type Parameters

Type Parameter
T