forked from pinks/eris
1
0
Fork 0
nyx/types/png-chunk-text.d.ts

3 lines
145 B
TypeScript

export function decode(chunk: Uint8Array): { keyword: string; text: string };
export function encode(keyword: string, text: string): Uint8Array;