From 13d2e15d724bb814867b3444d68c1eefafdbde8f Mon Sep 17 00:00:00 2001 From: Saad Jutt Date: Wed, 10 Nov 2021 08:13:12 +0500 Subject: [PATCH] chore(api): added missing type --- api/src/types/PreProgramVars.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 api/src/types/PreProgramVars.ts diff --git a/api/src/types/PreProgramVars.ts b/api/src/types/PreProgramVars.ts new file mode 100644 index 0000000..2010432 --- /dev/null +++ b/api/src/types/PreProgramVars.ts @@ -0,0 +1,7 @@ +export interface PreProgramVars { + username: string + userId: number + displayName: string + serverUrl: string + accessToken: string +}