/** * #immersive_mode.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ /** How a Devvit app is presented. */ export declare enum WebViewImmersiveMode { UNSPECIFIED = 0, /** * INLINE_MODE - Conventional post presentation. May appear adjacent other posts in a feed * or with comments. */ INLINE_MODE = 1, /** * IMMERSIVE_MODE - Large modal expanded presentation. Appears popped out from the rest of the * Reddit experience which is disabled. */ IMMERSIVE_MODE = 2, UNRECOGNIZED = -1 } export type WebViewImmersiveModeEffect = { immersiveMode: WebViewImmersiveMode; /** * A complete entrypoint URL, assumed to be a `devvit.json` entrypoint, to be * guarded by the site CSP. When specified, clients must unconditional load or * reload the target web view. When unspecified, clients must never reload the * target web view. See also `SplashPostData.entry`. */ entryUrl?: string | undefined; }; //# sourceMappingURL=immersive_mode.d.ts.map