feat(core): Remove own execution-process mode (#8490)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-01-30 12:51:40 +01:00
committed by GitHub
parent 79c9763122
commit 121a55b691
10 changed files with 14 additions and 784 deletions

View File

@@ -7,12 +7,6 @@ import type {
export type Class<T = object, A extends unknown[] = unknown[]> = new (...args: A) => T;
export interface IProcessMessage {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
data?: any;
type: string;
}
export interface IResponseError extends Error {
statusCode?: number;
}