You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
349 B
13 lines
349 B
/**
|
|
* @file Deep Link Interface Definitions
|
|
* @author Matthew Raymer
|
|
*
|
|
* Defines the core interfaces for the deep linking system.
|
|
* These interfaces are used across the deep linking implementation
|
|
* to ensure type safety and consistent error handling.
|
|
*/
|
|
|
|
export interface DeepLinkError extends Error {
|
|
code: string;
|
|
details?: unknown;
|
|
}
|
|
|