import { BearerPluginConfig, BearerTokens } from "../bearer/types.mjs"; //#region src/plugins/session-jwt/types.d.ts type SessionJwtTokens = BearerTokens; type SessionJwtPluginConfig = BearerPluginConfig & { /** Refresh once the access token is within this many seconds of expiry. Default 30. */expirySkewSeconds?: number; }; type RefreshInput = { refreshToken: string; }; //#endregion export { RefreshInput, SessionJwtPluginConfig, SessionJwtTokens };