Files
oneuptime/Common/Types/FunctionTypes.ts
2024-02-27 13:12:45 +00:00

4 lines
156 B
TypeScript

export type PromiseVoidFunctionType = () => Promise<void>;
export type VoidFunctionType = () => void;
export type ErrorFunctionType = (err: Error) => void;