@posthog/types
Version:
Type definitions for the PostHog JavaScript SDK
13 lines • 353 B
TypeScript
/**
* Survey types
*/
/**
* Represents the result of checking if a survey can be rendered.
*/
export interface SurveyRenderReason {
/** Whether the survey is visible/can be rendered */
visible: boolean;
/** The reason why the survey cannot be rendered, if applicable */
disabledReason?: string;
}
//# sourceMappingURL=survey.d.ts.map