@types/config
Advanced tools
Comparing version 0.0.35 to 0.0.36
{ | ||
"name": "@types/config", | ||
"version": "0.0.35", | ||
"version": "0.0.36", | ||
"description": "TypeScript definitions for node-config", | ||
@@ -29,3 +29,3 @@ "license": "MIT", | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
@@ -38,4 +38,4 @@ "type": "git", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "62f0b899ccd9aed58807937aae1687819f173fee28b6c8a959d0637374cb0558", | ||
"typeScriptVersion": "2.0" | ||
"typesPublisherContentHash": "7b330a392ec054c7fa535d15a5b772013c97f7c7cfd645169796d9aac7f09cb7", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -5,2 +5,7 @@ /* The raw function returns an object as-is instead of passing it through processes that will make the object immutable. | ||
export function raw<T>(obj: T): T; | ||
export class RawConfig<T> { | ||
constructor(rawObj: T); | ||
resolve(): T; | ||
} | ||
export function raw<T>(obj: T): RawConfig<T>; |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Thu, 24 Oct 2019 00:05:55 GMT | ||
* Last updated: Thu, 07 Nov 2019 19:27:31 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
6449
65