mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-03-13 16:51:42 +01:00
4 lines
119 B
TypeScript
4 lines
119 B
TypeScript
|
export default abstract class Importer {
|
||
|
abstract import(nameMap: string, description: string): Promise<string>;
|
||
|
}
|