From aaa737775c6bd5b48a59799eb9dedd55bbf157bd Mon Sep 17 00:00:00 2001 From: G Date: Tue, 7 May 2024 10:18:25 +0000 Subject: [PATCH] basic authentication response --- src/contexts/Types.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/contexts/Types.ts diff --git a/src/contexts/Types.ts b/src/contexts/Types.ts new file mode 100644 index 0000000..9087c35 --- /dev/null +++ b/src/contexts/Types.ts @@ -0,0 +1,4 @@ +export interface IauthenticationResponse { + access: string; + refresh: string; +} -- libgit2 0.27.1