From 9c8921db92d16b07ffc2a63ff3c80c4dcdd9ff9d Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 10 May 2022 17:38:07 +0200 Subject: chore: add Project single pages --- src/ts/types/swr.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/ts/types/swr.ts (limited to 'src/ts/types/swr.ts') diff --git a/src/ts/types/swr.ts b/src/ts/types/swr.ts new file mode 100644 index 0000000..4da6b2c --- /dev/null +++ b/src/ts/types/swr.ts @@ -0,0 +1,5 @@ +export type SWRResult = { + data?: T; + isLoading: boolean; + isError: boolean; +}; -- cgit v1.2.3