declare type JsFrameworkType = 'JAVASCRIPT'; export declare enum PlatformTypes { Android = "android", iOS = "ios", web = "web" } export declare type Platforms = [ PlatformTypes.Android, PlatformTypes.iOS, PlatformTypes.web ]; export interface PalSession { uid: string; } export interface PalSessionRequest { frameworkType: JsFrameworkType; platform: PlatformTypes; } export {};