eris/types/png-chunk-text.d.ts

3 lines
145 B
TypeScript
Raw Normal View History

2023-09-10 18:56:17 +00:00
export function decode(chunk: Uint8Array): { keyword: string; text: string };
export function encode(keyword: string, text: string): Uint8Array;