/** * Common type definitions shared across API operations */ /** * Represents a dashboard object from the Reveal SDK. * This is an external type from the Reveal JS SDK without TypeScript definitions. */ export interface RVDashboard { /** * Additional members supplied by the Reveal JavaScript SDK dashboard object. */ [key: string]: unknown; } /** * Type guard to check if an object is a valid RVDashboard * * @param obj - Value to inspect * @returns True when the value has the Reveal dashboard model marker */ export declare function isRVDashboard(obj: unknown): obj is RVDashboard; //# sourceMappingURL=common.types.d.ts.map