furystack-core
Advanced tools
Comparing version
export declare class CollectionResult<T> { | ||
'@odata.context': string; | ||
'@odata.nextlink': string; | ||
value: T[]; | ||
'@odata.context'?: string; | ||
'@odata.nextlink'?: string; | ||
constructor(value: T[]); | ||
} |
"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
103914
0.12%1501
0.13%110
-0.9%