import type { Tpagination } from "./Global"; export declare type extensions = { "extension_id": string; "URL": string; "type": string; "date_range": { "started_at": string; "ended_at": string; }; }; export declare type ExtensionParameters = { /** * cursor string if received in response */ after?: string; ended_at?: string; extension_id?: string; /** * not needed if cursor received in response * @default 20 * @max 100 */ first?: number; started_at?: string; type?: string; }; export declare type games = { "game_id": string; "URL": string; "type": string; "date_range": { "started_at": string; "ended_at": string; }; }; export declare type GamesParameters = { /** * cursor string if received in response */ after?: string; ended_at?: string; game_id?: string; /** * not needed if cursor received in response * @default 20 * @max 100 */ first?: number; started_at?: string; type?: string; }; export declare type JSONextentionsAnalytics = { data: Array; pagination: Tpagination; }; export declare type JSONgamesAnalytics = { data: Array; pagination: Tpagination; };