http-directives
Version:
A TypeScript-friendly package that provides strongly-typed HTTP constants
50 lines (48 loc) • 2.07 kB
TypeScript
declare class Charsets {
static readonly UTF_8 = "UTF-8";
static readonly UTF_16 = "UTF-16";
static readonly UTF_16BE = "UTF-16BE";
static readonly UTF_16LE = "UTF-16LE";
static readonly UTF_32 = "UTF-32";
static readonly UTF_32BE = "UTF-32BE";
static readonly UTF_32LE = "UTF-32LE";
static readonly ASCII = "US-ASCII";
static readonly ISO_646 = "ISO-646";
static readonly ISO_8859_1 = "ISO-8859-1";
static readonly ISO_8859_2 = "ISO-8859-2";
static readonly ISO_8859_3 = "ISO-8859-3";
static readonly ISO_8859_4 = "ISO-8859-4";
static readonly ISO_8859_5 = "ISO-8859-5";
static readonly ISO_8859_6 = "ISO-8859-6";
static readonly ISO_8859_7 = "ISO-8859-7";
static readonly ISO_8859_8 = "ISO-8859-8";
static readonly ISO_8859_9 = "ISO-8859-9";
static readonly ISO_8859_10 = "ISO-8859-10";
static readonly ISO_8859_13 = "ISO-8859-13";
static readonly ISO_8859_14 = "ISO-8859-14";
static readonly ISO_8859_15 = "ISO-8859-15";
static readonly ISO_8859_16 = "ISO-8859-16";
static readonly WINDOWS_1250 = "Windows-1250";
static readonly WINDOWS_1251 = "Windows-1251";
static readonly WINDOWS_1252 = "Windows-1252";
static readonly WINDOWS_1253 = "Windows-1253";
static readonly WINDOWS_1254 = "Windows-1254";
static readonly WINDOWS_1255 = "Windows-1255";
static readonly WINDOWS_1256 = "Windows-1256";
static readonly WINDOWS_1257 = "Windows-1257";
static readonly WINDOWS_1258 = "Windows-1258";
static readonly KOI8_R = "KOI8-R";
static readonly KOI8_U = "KOI8-U";
static readonly SHIFT_JIS = "Shift_JIS";
static readonly EUC_JP = "EUC-JP";
static readonly ISO_2022_JP = "ISO-2022-JP";
static readonly EUC_KR = "EUC-KR";
static readonly GB2312 = "GB2312";
static readonly GBK = "GBK";
static readonly BIG5 = "Big5";
static readonly HZ_GB_2312 = "HZ-GB-2312";
static readonly MAC_ROMAN = "MacRoman";
static readonly VISCII = "VISCII";
static readonly TIS_620 = "TIS-620";
}
export { Charsets };