js-codepage/types/index.d.ts

44 lines
1.0 KiB
TypeScript
Raw Normal View History

2018-01-18 22:47:47 +00:00
/* codepage.js (C) 2013-present SheetJS -- http://sheetjs.com */
// TypeScript Version: 2.2
declare namespace cptable {
/** Codepage index type (integer or string representation) */
export type CP$Index = number | string;
/* Individual codepage converter */
export interface CP$Conv {
enc: {[n: string]: number; };
dec: {[n: number]: string; };
}
/** Encode input type (string, array of characters, Buffer) */
export type CP$String = string | string[] | Uint8Array;
/** Encode output / decode input type */
export type CP$Data = string | number[] | Uint8Array;
/** General utilities */
export interface CP$Utils {
decode(cp: CP$Index, data: CP$Data): string;
encode(cp: CP$Index, data: CP$String, opts?: any): CP$Data;
hascp(n: number): boolean;
magic: {[cp: string]: string};
}
2018-01-18 22:47:47 +00:00
}
interface CP$Module {
2018-01-18 22:47:47 +00:00
/** Version string */
version: string;
/** Utility Functions */
utils: cptable.CP$Utils;
2018-01-18 22:47:47 +00:00
/** Codepage Converters */
[cp: number]: cptable.CP$Conv;
2018-01-18 22:47:47 +00:00
}
declare const cptable:CP$Module;
export = cptable;