Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/ini

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/ini - npm Package Compare versions

Comparing version 1.3.30 to 1.3.31

9

ini/index.d.ts

@@ -5,14 +5,15 @@ // Type definitions for ini v1.3.3

// Chris Arnesen <https://github.com/carnesen>
// Adaline Simonian <https://github.com/adalinesimonian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface EncodeOptions {
section: string
whitespace: boolean
section?: string;
whitespace?: boolean;
}
export function decode(str: string): {
[key: string]: any;
[key: string]: any;
};
export function parse(str: string): {
[key: string]: any;
[key: string]: any;
};

@@ -19,0 +20,0 @@ export function encode(object: any, options?: EncodeOptions | string): string;

{
"name": "@types/ini",
"version": "1.3.30",
"version": "1.3.31",
"description": "TypeScript definitions for ini",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ini",
"license": "MIT",

@@ -16,14 +17,20 @@ "contributors": [

"githubUsername": "carnesen"
},
{
"name": "Adaline Simonian",
"url": "https://github.com/adalinesimonian",
"githubUsername": "adalinesimonian"
}
],
"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/ini"
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "ba0fb8200a3e0ad7cfa4d472950a7d991d22fe179534eb13fafd9997e92cf9dc",
"typeScriptVersion": "2.0"
"typesPublisherContentHash": "b45ab68c4d6eb02841e6384a7d0b4f3844cdff61f9e261c6870196aa39fd14e2",
"typeScriptVersion": "3.7"
}

@@ -8,6 +8,32 @@ # Installation

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ini
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ini.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ini/index.d.ts)
````ts
// Type definitions for ini v1.3.3
// Project: https://github.com/isaacs/ini
// Definitions by: Marcin Porębski <https://github.com/marcinporebski>
// Chris Arnesen <https://github.com/carnesen>
// Adaline Simonian <https://github.com/adalinesimonian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
Additional Details
* Last updated: Thu, 29 Nov 2018 23:28:07 GMT
interface EncodeOptions {
section?: string;
whitespace?: boolean;
}
export function decode(str: string): {
[key: string]: any;
};
export function parse(str: string): {
[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: Thu, 07 Oct 2021 21:01:20 GMT
* Dependencies: none

@@ -17,2 +43,2 @@ * Global values: none

# Credits
These definitions were written by Marcin Porębski <https://github.com/marcinporebski>, Chris Arnesen <https://github.com/carnesen>.
These definitions were written by [Marcin Porębski](https://github.com/marcinporebski), [Chris Arnesen](https://github.com/carnesen), and [Adaline Simonian](https://github.com/adalinesimonian).

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc