mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-03-13 08:41:41 +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>;
|
|
}
|