From c168252da812e9d9f966c806429efe37c72942a1 Mon Sep 17 00:00:00 2001 From: Lina Ebeid Date: Mon, 13 May 2024 14:19:25 +0200 Subject: [PATCH] feat: create export action formatting (#517) --- src/action/action.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/action/action.ts b/src/action/action.ts index 219c8336..e8bbe622 100644 --- a/src/action/action.ts +++ b/src/action/action.ts @@ -26,3 +26,8 @@ export type ActionData = { requestedSampleSize: number; }; }; + +export enum ExportActionsFormatting { + JSON = 'json', + CSV = 'csv', +}