mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
7 lines
153 B
TypeScript
7 lines
153 B
TypeScript
import ini = require("ini");
|
|
|
|
var ini_content = "";
|
|
|
|
var ini_object: any = ini.decode(ini_content);
|
|
var ini_rev_string: string = ini.encode(ini_object);
|