import type { MsgPack } from '../msgpack'; import type { CborUint8Array } from '../cbor/types'; import type { Brand } from '@jsonjoy.com/util/lib/types'; export type base64_string = Brand; export type binary_string = Brand<`data:application/octet-stream;base64,${base64_string}`, T, 'binary_string'>; export type cbor_string = Brand<`data:application/cbor;base64,${base64_string>}`, T, 'cbor_string'>; export type msgpack_string = Brand<`data:application/msgpack;base64,${base64_string>}`, T, 'msgpack_string'>; //# sourceMappingURL=types.d.ts.map