converter/src/app/utf8.ts

4 lines
86 B
TypeScript

export interface Utf8 {
encode(input: any): string;
decode(input: string): any;
}