web_lib

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

commit 469ccb00bb4e55c25a8f14cc4d7e969968a3d4fe
parent df042d428b02f8f5caf2c7786f8c6ccd2e59efd4
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Sat,  7 Sep 2024 09:07:52 +0000

utils: add types

Diffstat:
Mutils/.gitignore | 1+
Mutils/src/types.ts | 6++++--
2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/utils/.gitignore b/utils/.gitignore @@ -32,3 +32,4 @@ _tmp notes*.txt justfile dist +git-diff.txt diff --git a/utils/src/types.ts b/utils/src/types.ts @@ -9,4 +9,6 @@ export type LocationPoint = { lat: number; lng: number; }; -} -\ No newline at end of file +} + +export type NumberTuple = [number, number]; +\ No newline at end of file