import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace bufferEncodingEnum { enum Id { ASCII = "ascii", UTF8 = "utf8", UTF_8 = "utf-8", UTF16LE = "utf16le", UCS2 = "ucs2", UCS_2 = "ucs-2", BASE64 = "base64", LATIN1 = "latin1", BINARY = "binary", HEX = "hex" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }