Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fenextjs-interface

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fenextjs-interface - npm Package Compare versions

Comparing version 2.1.0 to 2.2.0

9

cjs/File/index.d.ts

@@ -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

2

cjs/Request/index.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc