You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

furystack-core

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

furystack-core - npm Package Compare versions

Comparing version

to
1.0.0-alpha-6

5

dist/api/http-models/CollectionResult.d.ts
export declare class CollectionResult<T> {
'@odata.context': string;
'@odata.nextlink': string;
value: T[];
'@odata.context'?: string;
'@odata.nextlink'?: string;
constructor(value: T[]);
}

3

dist/api/http-models/CollectionResult.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class CollectionResult {
constructor(value) {
this.value = value;
}
}
exports.CollectionResult = CollectionResult;
//# sourceMappingURL=CollectionResult.js.map
export * from './CollectionResult';
export * from './SingleResult';

@@ -7,3 +7,2 @@ "use strict";

__export(require("./CollectionResult"));
__export(require("./SingleResult"));
//# sourceMappingURL=index.js.map
{
"name": "furystack-core",
"version": "1.0.0-alpha-5",
"version": "1.0.0-alpha-6",
"description": "FuryStack framework, Core package",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

export class CollectionResult<T> {
public '@odata.context': string;
public '@odata.nextlink': string;
public value: T[];
public '@odata.context'?: string;
public '@odata.nextlink'?: string;
public '@odata.count'?: number;
constructor(public value: T[], count?: number, context?: string, nextlink?: string) {
this['@odata.count'] = count;
}
}
export * from './CollectionResult';
export * from './SingleResult';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet