package-json-type
    Preparing search index...

    Interface IFunding

    Funding information for a package. Provides details on how to financially support the package.

    {
    "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/webpack"
    }
    }
    interface IFunding {
        type?: string;
        url: string;
    }
    Index

    Properties

    Properties

    type?: string

    The type of funding (e.g., "opencollective", "github", "patreon").

    url: string

    The URL to the funding page.