aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index 8214328..d076567 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -9,7 +9,7 @@ import {
import { show, head, tail } from './lib/display';
import { getSize, info } from './lib/info';
import { flatten, fromJSON, fromCSV, searchValue } from './lib/data';
-import { toJSON } from './lib/export';
+import { toJSON, toCSV } from './lib/export';
import { isArrayOfType, range, flattenJSON } from './helpers/arrayFunctions';
class Izuku {
@@ -83,6 +83,7 @@ class Izuku {
};
public title = title;
public toJSON = toJSON;
+ public toCSV = toCSV;
}
class Frame extends Izuku {