Implemented naive reconnecting.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
Akos Kitta
2019-10-08 10:55:50 +02:00
parent 2be54944bf
commit 8971dc4c5f
3 changed files with 69 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
export type RecursiveRequired<T> = {
[P in keyof T]-?: RecursiveRequired<T[P]>;
};