converter/src/app/utf8.ts

5 lines
86 B
TypeScript

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