PostHogPluginOptions
PostHogPluginOptions
Options for the PostHog plugin.
Signature
interface PostHogPluginOptions {
posthogOptions: {
/**
* The PostHog API key.
*/
apiKey: string;
/**
* Additional options for the PostHog client.
*/
options?: PostHogOptions;
};
}
posthogOptions
property
{ /** * The PostHog API key. */ apiKey: string; /** * Additional options for the PostHog client. */ options?: PostHogOptions; }
The PostHog API key and options.