4 lines
119 B
TypeScript
Raw Normal View History

2022-03-27 00:07:45 +00:00
export default abstract class Importer {
abstract import(nameMap: string, description: string): Promise<string>;
}