chore: linted with auto-fix

This commit is contained in:
Matthew Raymer
2025-04-09 07:17:21 +00:00
parent 41c0f32544
commit 669ecbd1eb
9 changed files with 77 additions and 56 deletions

View File

@@ -25,7 +25,7 @@
*
* Deep Link Format:
* timesafari://<route>[/<param>][?queryParam1=value1&queryParam2=value2]
*
*
* Supported Routes:
* - user-profile: View user profile
* - project-details: View project details
@@ -73,7 +73,7 @@ export class DeepLinkHandler {
/**
* Parses deep link URL into path, params and query components.
* Validates URL structure using Zod schemas.
*
*
* @param url - The deep link URL to parse (format: scheme://path[?query])
* @throws {DeepLinkError} If URL format is invalid
* @returns Parsed URL components (path, params, query)
@@ -111,7 +111,7 @@ export class DeepLinkHandler {
/**
* Processes incoming deep links and routes them appropriately.
* Handles validation, error handling, and routing to the correct view.
*
*
* @param url - The deep link URL to process
* @throws {DeepLinkError} If URL processing fails
*/
@@ -142,7 +142,7 @@ export class DeepLinkHandler {
/**
* Routes the deep link to appropriate view with validated parameters.
* Validates route and parameters using Zod schemas before routing.
*
*
* @param path - The route path from the deep link
* @param params - URL parameters
* @param query - Query string parameters