fenextjs-interface
Advanced tools
Comparing version 2.1.0 to 2.2.0
@@ -0,1 +1,7 @@ | ||
export declare enum FileStatus { | ||
"NONE" = "NONE", | ||
"APPROVED" = "APPROVED", | ||
"PENDING" = "PENDING", | ||
"REJECTED" = "REJECTED" | ||
} | ||
export interface FileProps { | ||
@@ -5,2 +11,5 @@ text?: string; | ||
fileData: any; | ||
base64?: string; | ||
url?: string; | ||
status?: FileStatus | keyof typeof FileStatus; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.FileStatus = void 0; | ||
var FileStatus; | ||
(function (FileStatus) { | ||
FileStatus["NONE"] = "NONE"; | ||
FileStatus["APPROVED"] = "APPROVED"; | ||
FileStatus["PENDING"] = "PENDING"; | ||
FileStatus["REJECTED"] = "REJECTED"; | ||
})(FileStatus || (exports.FileStatus = FileStatus = {})); | ||
//# sourceMappingURL=index.js.map |
@@ -9,3 +9,3 @@ import { ErrorProps } from "../Error"; | ||
} | ||
export interface RequestResultDataProps<R = any, E = any, T = RequestResultTypeProps> { | ||
export interface RequestResultDataProps<R = any, E = any, T = RequestResultTypeProps | keyof typeof RequestResultTypeProps> { | ||
type: T; | ||
@@ -12,0 +12,0 @@ result?: R; |
{ | ||
"name": "fenextjs-interface", | ||
"version": "2.1.0", | ||
"version": "2.2.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./cjs/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26936
640