0.1.4 • Published 1 year ago
@types/settings v0.1.4
Installation
npm install --save @types/settings
Summary
This package contains type definitions for settings (https://github.com/mgutz/node-settings).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/settings.
index.d.ts
// Type definitions for settings 0.1
// Project: https://github.com/mgutz/node-settings
// Definitions by: Shrey Jain <https://github.com/shreyjain1994>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
// This wierd looking class definition is necessary since the function that the module
// exposes NEEDS (will throw error otherwise) to be called with the `new` keyword
// BUT returns a random object...not an instance of the class
declare class Settings {
constructor(pathOrModule: Settings.PathOrModule, options?: Settings.Options);
[setting: string]: any;
}
declare namespace Settings {
interface Options {
env?: string | undefined;
root?: string | undefined;
defaults?: any;
}
type PathOrModule = string |
{
forceEnv?: string | undefined,
common: any, // error is thrown if 'common' object is not provided
[envName: string]: any
};
}
export = Settings;
Additional Details
- Last updated: Tue, 06 Jul 2021 16:34:40 GMT
- Dependencies: none
- Global values: none
Credits
These definitions were written by Shrey Jain.