Source: types/voidFunction.ts

/**
 * void function type define
 * @memberof module:types
 * @alias TypeVoidFunction
 */
export type TypeVoidFunction = (...args: any[]) => void;