/**
 * Controller action type.
 */
export type ActionType = 'get' | 'delete' | 'post' | 'put' | 'patch' | 'head';
