UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

8 lines (7 loc) 496 B
import type { NormalizedSessionDriverConfig, SessionDriverConfig } from './types.js'; import type { SSRManifestSession } from '../app/types.js'; import type { AstroConfig } from '../../types/public/index.js'; export declare function normalizeSessionDriverConfig(driver: string | SessionDriverConfig, /** @deprecated */ options?: Record<string, any>): NormalizedSessionDriverConfig; export declare function sessionConfigToManifest(config: AstroConfig['session']): SSRManifestSession | undefined;