mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
import { ImportResult } from "../models/domain/importResult";
|
|
|
|
export interface Importer {
|
|
organizationId: string;
|
|
parse(data: string): Promise<ImportResult>;
|
|
}
|