Module providing URI handling plugin infrastructure for extending Lens Studio with custom URI scheme handlers.
Example
// The LensStudio:UriHandlerPlugin module lets plugins register as handlers // for custom URI schemes. When Lens Studio receives a matching deep-link, // the plugin's handle(uri) method is called. // // Descriptor adds: // canHandle(uri: string): boolean — filter which URIs this plugin handles // // UriHandlerPlugin class: // handle(uri: string): boolean — process the URI, return true if handled
Module providing URI handling plugin infrastructure for extending Lens Studio with custom URI scheme handlers.
Example