@arkyn/types 1.3.150 → 1.3.152
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,9 @@
|
|
1
|
+
import type { Params } from "@remix-run/react";
|
1
2
|
import type { InboxFlowDTO } from "./config/InboxFlowDTO";
|
2
3
|
type ConfigProps = {
|
3
4
|
request: Request;
|
4
|
-
|
5
|
+
params: Params;
|
6
|
+
inbox_flow: InboxFlowDTO;
|
5
7
|
};
|
6
8
|
type MonitoringErrorsDTO = (error: any, config: ConfigProps) => Promise<void>;
|
7
9
|
export type { MonitoringErrorsDTO };
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"MonitoringErrorsDTO.d.ts","sourceRoot":"","sources":["../../src/api/MonitoringErrorsDTO.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,
|
1
|
+
{"version":3,"file":"MonitoringErrorsDTO.d.ts","sourceRoot":"","sources":["../../src/api/MonitoringErrorsDTO.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE1D,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,YAAY,CAAC;CAC1B,CAAC;AAEF,KAAK,mBAAmB,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,WAAW,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;AAE9E,YAAY,EAAE,mBAAmB,EAAE,CAAC"}
|
package/package.json
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
+
import type { Params } from "@remix-run/react";
|
1
2
|
import type { InboxFlowDTO } from "./config/InboxFlowDTO";
|
2
3
|
|
3
4
|
type ConfigProps = {
|
4
5
|
request: Request;
|
5
|
-
|
6
|
+
params: Params;
|
7
|
+
inbox_flow: InboxFlowDTO;
|
6
8
|
};
|
7
9
|
|
8
10
|
type MonitoringErrorsDTO = (error: any, config: ConfigProps) => Promise<void>;
|