@thaunknown/web-irc
Version:
A TypeScript port of irc-framework's WebIRC client, without the bloat of unnceessary packages.
12 lines (11 loc) • 384 B
TypeScript
declare const _default: {
decodeValue: typeof decodeValue;
encodeValue: typeof encodeValue;
decode: typeof decode;
encode: typeof encode;
};
export default _default;
declare function decodeValue(value: any): any;
declare function encodeValue(value: any): any;
declare function decode(tag_str: any): any;
declare function encode(tags: any, separator?: string): string;