UNPKG

@uservitals/import

Version:

Import helpers for uploading feedback to UserVitals

15 lines 483 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 GenericChangelogCsvImporter implements Importer { constructor(filePath: string, status: string); get name(): string; get defaultTeamName(): string; import: () => Promise<ImportResult>; private filePath; private status; } //# sourceMappingURL=GenericChangelogCsvImporter.d.ts.map