Added form controls to set real time updates interval

This commit is contained in:
Alejandro Celaya
2020-09-09 19:16:04 +02:00
parent 5d6d802d64
commit 9b45513684
5 changed files with 66 additions and 14 deletions

View File

@@ -39,3 +39,7 @@ export type Nullable<T> = {
type Optional<T> = T | null | undefined;
export type OptionalString = Optional<string>;
export type RecursivePartial<T> = {
[P in keyof T]?: RecursivePartial<T[P]>;
};