import type { FastifyInstance } from 'fastify'; import type { RedwoodFastifyAPIOptions } from './plugins/api'; export type FastifySideConfigFnOptions = { side: 'api' | 'web'; }; export type FastifySideConfigFn = (fastify: FastifyInstance, options?: FastifySideConfigFnOptions & Pick) => Promise | void; export type APIParsedOptions = { port?: number; host?: string; loadEnvFiles?: boolean; } & Omit; export type BothParsedOptions = { webPort?: number; webHost?: string; apiPort?: number; apiHost?: string; apiRootPath?: string; } & Omit; //# sourceMappingURL=types.d.ts.map