import { createPinboard } from "./server.js"; //#region src/env.d.ts declare namespace pinboardEnv { type Source = Record; type Result = { redisUrl: string; options: Omit; }; } declare const redisEndpointForLogs: (redisUrl: string) => string; /** PINBOARD_* env surface shared by the node and workerd entries; throws on invalid values. */ declare const pinboardEnv: (env: pinboardEnv.Source) => pinboardEnv.Result; //#endregion export { pinboardEnv, redisEndpointForLogs }; //# sourceMappingURL=env.d.ts.map