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

2.0.3 • Public • Published

Installation

npm install --save @types/resx

Summary

This package contains type definitions for resx (http://locize.com).

Details

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

index.d.ts

export interface ObjectOfStrings {
    [key: string]: string;
}

export interface Js2ResxOptions {
    pretty?: boolean | undefined;
    indent?: string | undefined;
    newline?: string | undefined;
}

// resx2js: promise version
export function resx2js(str: string, withComments?: boolean): Promise<ObjectOfStrings>;

// resx2js: callback version
export function resx2js(str: string, cb: (error: Error, result: ObjectOfStrings) => void): void;

// resx2js: callback version with option
export function resx2js(str: string, withComments: boolean, cb: (error: Error, result: ObjectOfStrings) => void): void;

// js2resx: promise version
export function js2resx(resources: ObjectOfStrings, opt?: Js2ResxOptions): Promise<string>;

// js2resx: callback version
export function js2resx(resources: ObjectOfStrings, cb: (error: Error, result: string) => void): void;

// js2resx: callback version with options
export function js2resx(
    resources: ObjectOfStrings,
    opt: Js2ResxOptions,
    cb: (error: Error, result: string) => void,
): void;

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: none

Credits

These definitions were written by Daniel Sousa.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/resx

Weekly Downloads

109

Version

2.0.3

License

MIT

Unpacked Size

4.57 kB

Total Files

5

Last publish

Collaborators

  • types