import type { NativeClientVersion } from '@devvit/protos/json/devvit/ui/effects/web_view/v1alpha/context.js'; /** The invoking client for the active request. */ export type Client = NativeClient; /** The invoking Android or iOS client for the active request. */ export type NativeClient = { name: 'ANDROID' | 'IOS'; version: NativeClientVersion; }; //# sourceMappingURL=client.d.ts.map