web_lib

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

commit a3222f503975ee153d0ecddea9fead7474935c3f
parent f9e699932df7c265f440fc2e31d766a693dff87c
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Sat, 19 Oct 2024 10:29:32 +0000

utils: add types

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

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