@izzyjs/route
Version:
Use your AdonisJs routes in your Inertia.js application
10 lines (9 loc) • 371 B
TypeScript
/**
* @izzyjs/route
*
* (c) IzzyJs - 2024
* For the full license information, please view the LICENSE file that was distributed with this source code.
*/
import type { RouteJSON } from '@adonisjs/core/types/http';
import type { SerializedRoute } from './types/manifest.js';
export declare function serializeRoute(route: RouteJSON, domain?: string): SerializedRoute;