aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/data/common.ts
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-10 16:56:09 +0800
committercrupest <crupest@outlook.com>2020-08-10 16:56:09 +0800
commit0024672d75d061167fb9de67629cc796a52861e6 (patch)
tree969091ee5d7078165f0c1324728fc1182943988a /Timeline/ClientApp/src/app/data/common.ts
parent38f4fdc3229638059953f9e058d49ad7c81c0ca9 (diff)
downloadtimeline-0024672d75d061167fb9de67629cc796a52861e6.tar.gz
timeline-0024672d75d061167fb9de67629cc796a52861e6.tar.bz2
timeline-0024672d75d061167fb9de67629cc796a52861e6.zip
Do not block when get post data.
Diffstat (limited to 'Timeline/ClientApp/src/app/data/common.ts')
-rw-r--r--Timeline/ClientApp/src/app/data/common.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/data/common.ts b/Timeline/ClientApp/src/app/data/common.ts
index 35934a29..87984e21 100644
--- a/Timeline/ClientApp/src/app/data/common.ts
+++ b/Timeline/ClientApp/src/app/data/common.ts
@@ -19,3 +19,5 @@ export function throwIfNotNetworkError(e: unknown): void {
throw e;
}
}
+
+export type BlobOrStatus = Blob | 'loading' | 'error';