You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 14, 2023. It is now read-only.
@larry, currently looking into custom-protocol-detection-blockstack and writing a type declaration for it, but wondering where it gets its name from (the name is still custom-protocol-detection in your fork).
Have written a (really) basic declaration
/** * Checks whether a given protocol handler exists and performs corresponding actions * * @param protocolURI Protocol URI to check for * @param failCallback Callback function to execute when the protocol handler doesn't existt * @param successCallback Callback function to execute when the protocol handler exists * @param unsupportedBrowserCallback Callback function to execute when found an unsupported browser */exportdeclarefunctionprotocolCheck(protocolURI: string,failCallback: ()=>void,successCallback: ()=>void,unsupportedBrowserCallback: ()=>void): void;
but getting problems when trying to yarn link my fork of your fork into my port (:sweat_smile:).
Am I missing something here? (Fixed it for now with manually symlinking my fork.)