/** * Signed Webbit user JWT (header, payload, signature base64 strings separated * by dots). Users shouldn't share their JWTs with others, but perfectly fine * for a given user to see. * * `BridgeContext.token` encodes a `RequestContext` and * `BridgeContext.webbitToken` encodes a `WebbitClaims`. */ export type WebbitToken = `${string}.${string}.${string}`; export declare const noWebbitToken: WebbitToken; /** * `RequestContext` token query parameter name on `DevvitPost.entrypointUrl`. */ export declare const tokenParam: string; //# sourceMappingURL=webbit.d.ts.map