UNPKG

naystack

Version:

A stack built with tight Next + Drizzle + GraphQL

12 lines (9 loc) 374 B
import * as next_server from 'next/server'; import { NextRequest } from 'next/server'; import { InitRoutesOptions } from '../types.js'; import '../../types.js'; declare const getGetRoute: (options: InitRoutesOptions) => (req: NextRequest) => next_server.NextResponse<{ accessToken: string | undefined; refreshToken: string | undefined; }>; export { getGetRoute };