aboutsummaryrefslogtreecommitdiff
path: root/formats.ts
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2019-11-10 14:34:18 -0500
committerKevin J Hoerr <kjhoerr@protonmail.com>2019-11-10 14:34:18 -0500
commita4fdedfcac02cb53608d9d3b9e96de0526140fd7 (patch)
tree9a72cf7335065e03e105f0ccdb4ac3cd5a0e70ba /formats.ts
parent170c53200634dc9be8f1cf3d23e32448e7f5f915 (diff)
downloadao-coverage-a4fdedfcac02cb53608d9d3b9e96de0526140fd7.tar.gz
ao-coverage-a4fdedfcac02cb53608d9d3b9e96de0526140fd7.tar.bz2
ao-coverage-a4fdedfcac02cb53608d9d3b9e96de0526140fd7.zip
Move TS files into /src
Diffstat (limited to 'formats.ts')
-rw-r--r--formats.ts33
1 files changed, 0 insertions, 33 deletions
diff --git a/formats.ts b/formats.ts
deleted file mode 100644
index b5a24bf..0000000
--- a/formats.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-interface Format {
- parse_coverage: (file: Document) => number;
-}
-
-interface FormatList {
- [key: string]: Format
-}
-
-interface FormatObj {
- formats: FormatList,
- list_formats: () => string[],
- get_format: (format: string) => Format,
-}
-
-const FormatsObj: FormatObj = {
- formats: {
- tarpaulin: {
- parse_coverage: (file: Document) => {
- return 0.0;
- }
- },
- },
-
- list_formats: function () {
- return Object.keys(this.formats);
- },
-
- get_format: function (format: string) {
- return this.formats[format];
- }
-}
-
-export default FormatsObj; \ No newline at end of file