@izzyjs/route
Version:
Use your AdonisJs routes in your Inertia.js application
20 lines (19 loc) • 545 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 { ApplicationService } from '@adonisjs/core/types';
import type { GlobalIzzyJs } from '../src/types/manifest.js';
declare global {
namespace globalThis {
var __izzy_route__: GlobalIzzyJs;
}
}
export default class IzzyRouteProvider {
#private;
protected app: ApplicationService;
constructor(app: ApplicationService);
ready(): Promise<void>;
}