web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

commit f9e699932df7c265f440fc2e31d766a693dff87c
parent ad68f32f38a18b3d6a4bab1ab0485321e3977d46
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Fri, 18 Oct 2024 12:39:40 +0000

utils: add types

Diffstat:
Mutils/src/types.ts | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/utils/src/types.ts b/utils/src/types.ts @@ -6,6 +6,7 @@ export type ErrorMessage<T extends string> = { err: T }; export type ResultId = { id: string; }; export type ResultPass = { pass: true; }; export type ResultsList<T> = { results: T[]; }; +export type ResultObj<T> = { result: T; }; export type LocationPoint = GeolocationCoordinatesPoint & { lat: number;