converter/src/app/converter/converter.ts

6 lines
114 B
TypeScript

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