UNPKG

@uservitals/import

Version:

Import helpers for uploading feedback to UserVitals

14 lines 429 B
import { Importer, ImportResult } from "../../types"; /** * Import issues from a Generic CSV export. * @param filePath Path to CSV file * @prarm sdk API */ export declare class GenericCsvImporter implements Importer { constructor(filePath: string); get name(): string; get defaultTeamName(): string; import: () => Promise<ImportResult>; private filePath; } //# sourceMappingURL=GenericCsvImporter.d.ts.map