mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
4 lines
156 B
TypeScript
4 lines
156 B
TypeScript
export type PromiseVoidFunctionType = () => Promise<void>;
|
|
export type VoidFunctionType = () => void;
|
|
export type ErrorFunctionType = (err: Error) => void;
|