import type { BaseContext } from '../shared/baseContext.js'; import type { Client } from '../shared/client.js'; import type { T2, T3 } from '../tid.js'; /** * Devvit web client context for the lifetime of the web view. */ export type Context = BaseContext & { /** Details about the platform the app was invoked from. */ client: Client | undefined; /** * The post author user ID, if applicable to the context and the account is * active. * @experimental */ postAuthorId: T2 | undefined; /** * The ID of the current post. */ postId: T3; }; //# sourceMappingURL=client-context.d.ts.map