converter/src/app/converter/converter.ts

6 lines
112 B
TypeScript

export interface Converter {
getDisplayname(): string;
getId(): string;
convert(input: string): string;
}