@native-systems/utility 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +8 -21
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -608,30 +608,17 @@ declare module "@native-systems/utility" {
|
|
|
608
608
|
export { Exceptions };
|
|
609
609
|
}
|
|
610
610
|
|
|
611
|
-
declare module "@native-systems/utility" {
|
|
612
|
-
type Error = ErrorConstructor & {
|
|
613
|
-
status: number;
|
|
614
|
-
message: string;
|
|
615
|
-
error: string;
|
|
616
|
-
};
|
|
617
|
-
export { Error };
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
declare module "@native-systems/utility" {
|
|
621
|
-
interface ErrorResponse extends Response {
|
|
622
|
-
isNativeError: boolean;
|
|
623
|
-
}
|
|
624
|
-
export type { ErrorResponse };
|
|
625
|
-
}
|
|
626
|
-
|
|
627
611
|
declare module "@native-systems/utility" {
|
|
628
612
|
namespace Native {
|
|
613
|
+
type Error = ErrorConstructor & {
|
|
614
|
+
status: number;
|
|
615
|
+
message: string;
|
|
616
|
+
error: string;
|
|
617
|
+
};
|
|
618
|
+
interface ErrorResponse extends Response {
|
|
619
|
+
isNativeError: boolean;
|
|
620
|
+
}
|
|
629
621
|
export { Error, ErrorResponse };
|
|
630
622
|
}
|
|
631
|
-
export { Native };
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
declare module "@native-systems/utility" {
|
|
635
|
-
export { Exceptions, NativeException, PgException, PostgresError };
|
|
636
623
|
export type { Native };
|
|
637
624
|
}
|