@types/ini
TypeScript icon, indicating that this package has built-in type declarations

4.1.1 • Public • Published

Installation

npm install --save @types/ini

Summary

This package contains type definitions for ini (https://github.com/npm/ini).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ini.

interface EncodeOptions {
    align?: boolean;
    section?: string;
    sort?: boolean;
    whitespace?: boolean;
    newline?: boolean;
    platform?: string;
    bracketedArray?: boolean;
}

interface DecodeOptions {
    bracketedArray?: boolean;
}

export function decode(str: string, options?: DecodeOptions): {
    [key: string]: any;
};
export function parse(str: string, options?: DecodeOptions): {
    [key: string]: any;
};
export function encode(object: any, options?: EncodeOptions | string): string;
export function stringify(object: any, options?: EncodeOptions | string): string;
export function safe(val: string): string;
export function unsafe(val: string): string;

Additional Details

  • Last updated: Sun, 09 Jun 2024 05:35:20 GMT
  • Dependencies: none

Credits

These definitions were written by Marcin Porębski, Chris Arnesen, and Adaline Simonian.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/ini

Weekly Downloads

205,034

Version

4.1.1

License

MIT

Unpacked Size

4.29 kB

Total Files

5

Last publish

Collaborators

  • types