Files
oneuptime/Common/Types/FunctionTypes.ts
2024-02-27 15:17:39 +00:00

5 lines
207 B
TypeScript

export type PromiseVoidFunction = () => Promise<void>;
export type VoidFunction = () => void;
export type ErrorFunction = (err: Error) => void;
export type PromiseRejectErrorFunction = (err: Error) => void;