2022-10-27 19:33:39 -04:00

4 lines
139 B
TypeScript

import type { HandlerFunction } from './HandlerFunction';
export type ActionsMap<T extends string = string> = Record<T, HandlerFunction>;