web_lib

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

commit 40619cc9dedc6c70bb0962ba2637fd84d7e7619e
parent aeed3ec102306f07ba47808842790d76021a34f0
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Mon, 10 Feb 2025 11:34:15 +0000

utils: edit app types

Diffstat:
Mutils/src/app/types/app.ts | 3---
Mutils/src/app/types/component.ts | 2--
2 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/utils/src/app/types/app.ts b/utils/src/app/types/app.ts @@ -67,10 +67,7 @@ export interface SvelteTransitionConfig { export type LcGuiAlertCallback = CallbackPromiseFull<string, boolean>; export type LcGuiConfirmCallback = CallbackPromiseFull<string | { message: string; ok?: string; cancel?: string }, boolean>; - -//export type LcGeocodeCurrentCallback = CallbackPromiseFull<boolean | string, IClientGeolocationPosition | undefined>; export type LcGeocodeCurrentCallback = CallbackPromiseResult<IClientGeolocationPosition>; - export type LcGeocodeCallback = CallbackPromiseFull<GeolocationPoint, GeocoderReverseResult | undefined>; export type LcPhotoAddCallback = CallbackPromiseResult<string>; export type LcPhotoAddMultipleCallback = CallbackPromiseResult<string[]>; diff --git a/utils/src/app/types/component.ts b/utils/src/app/types/component.ts @@ -59,8 +59,6 @@ export type ITextArea = IIdOpt & IClOpt & ILyOpt & { callback_mount?: ElementCallbackMount<HTMLTextAreaElement>; }; -//export type IBasisOpt<T extends object> = T | undefined; - export type INavigationRoute<T extends string> = { route: T | [T, NavigationParamTuple[]]; };