@elysiumoss/ui-capture - v0.1.1
    Preparing search index...

    Interface LinkDiscoveryTools

    interface LinkDiscoveryTools {
        prepareForLinkDiscovery: (
            page: Page,
            url: string,
        ) => Effect<void, CaptureError>;
        extractLinks: (page: Page) => Effect<readonly string[], never>;
    }
    Index

    Properties

    prepareForLinkDiscovery: (page: Page, url: string) => Effect<void, CaptureError>
    extractLinks: (page: Page) => Effect<readonly string[], never>