UNPKG

@types/properties-reader

Version:
60 lines (49 loc) 2.03 kB
# Installation > `npm install --save @types/properties-reader` # Summary This package contains type definitions for properties-reader (https://github.com/steveukx/properties). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/properties-reader. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/properties-reader/index.d.ts) ````ts declare namespace PropertiesReader { type Value = string | number | boolean; interface Reader { get(propertyName: string): Value | null; getRaw(propertyName: string): string | null; path(): {}; append(path: string): Reader; read(properties: string): Reader; set(propertyName: string, value: Value): Reader; length: number; each(iterator: (key: string, value: Value) => void): Reader; each<T>(iterator: (this: T, key: string, value: Value) => void, scope: T): Reader; getAllProperties(): { [key: string]: Value }; clone(): Reader; save(destFile: string, onComplete?: (err: any, data: string) => void): Promise<string>; getByRoot(root: any): { [key: string]: Value }; bindToExpress(app: object, basePath?: string, makePaths?: boolean): Reader; } interface AppenderOptions { allowDuplicateSections: boolean; } interface WriterOptions { saveSections: boolean; } interface FullOptions { appender?: AppenderOptions | undefined; writer?: WriterOptions | undefined; } } declare function PropertiesReader( path: string, encoding?: string, options?: PropertiesReader.AppenderOptions | PropertiesReader.WriterOptions | PropertiesReader.FullOptions, ): PropertiesReader.Reader; export = PropertiesReader; ```` ### Additional Details * Last updated: Tue, 07 Nov 2023 09:09:39 GMT * Dependencies: none # Credits These definitions were written by [Zlatko Andonovski](https://github.com/Goldsmith42).