执行过npm install命令的vue-element-admin源码
康凯
2022-05-20 aa4c235a8ca67ea8b731f90c951a465e92c0a865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* codepage.js (C) 2013-present SheetJS -- http://sheetjs.com */
// TypeScript Version: 2.2
 
/** 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};
}
 
/* note: TS cannot export top-level indexer, hence default workaround */
export interface CP$Module {
    /** Version string */
    version: string;
 
    /** Utility Functions */
    utils: CP$Utils;
 
    /** Codepage Converters */
    [cp: number]: CP$Conv;
}
export const cptable: CP$Module;
export default cptable;