error.d.ts 262 B

123456
  1. //#region ../../packages/utils/error.d.ts
  2. declare function throwError(scope: string, m: string): never;
  3. declare function debugWarn(err: Error): void;
  4. declare function debugWarn(scope: string, message: string): void;
  5. //#endregion
  6. export { debugWarn, throwError };