UNPKG

@technobuddha/library

Version:
9 lines (8 loc) 208 B
/** * Formats for binary encoding * @see {@link encodeBinary} * @see {@link decodeBinary} * @group Binary * @category Encoding */ export type BinaryEncoding = 'base64' | 'base64url' | 'hex' | 'binary';