fenextjs-interface
Advanced tools
Comparing version 1.0.5 to 1.0.6
export * from "./User"; | ||
export * from "./Phone"; | ||
export * from "./Request"; | ||
export * from "./Error"; |
@@ -7,2 +7,3 @@ "use strict"; | ||
tslib_1.__exportStar(require("./Request"), exports); | ||
tslib_1.__exportStar(require("./Error"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -0,5 +1,6 @@ | ||
import { ErrorProps } from "@/Error"; | ||
export interface RequestResultDataProps<R = any, E = any, T = "ok" | "error"> { | ||
type: T; | ||
result?: R; | ||
error?: E; | ||
error?: ErrorProps<E>; | ||
message?: string; | ||
@@ -6,0 +7,0 @@ } |
export * from "./User"; | ||
export * from "./Phone"; | ||
export * from "./Request"; | ||
export * from "./Error"; |
export * from "./User"; | ||
export * from "./Phone"; | ||
export * from "./Request"; | ||
export * from "./Error"; | ||
//# sourceMappingURL=index.js.map |
@@ -0,5 +1,6 @@ | ||
import { ErrorProps } from "@/Error"; | ||
export interface RequestResultDataProps<R = any, E = any, T = "ok" | "error"> { | ||
type: T; | ||
result?: R; | ||
error?: E; | ||
error?: ErrorProps<E>; | ||
message?: string; | ||
@@ -6,0 +7,0 @@ } |
{ | ||
"name": "fenextjs-interface", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./dist/cjs/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
9790
31
175