1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

export service

This commit is contained in:
Kyle Spearrin
2018-05-17 10:52:06 -04:00
parent 1fdb694fae
commit ba10d07042
3 changed files with 120 additions and 119 deletions

View File

@@ -0,0 +1,4 @@
export abstract class ExportService {
getCsv: () => Promise<string>;
getFileName: () => string;
}