mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-11 03:14:27 +02:00
10 lines
438 B
TypeScript
10 lines
438 B
TypeScript
/// <reference types="@adonisjs/application/build/adonis-typings" />
|
|
/// <reference types="@adonisjs/repl" />
|
|
import { ReplContract } from '@ioc:Adonis/Addons/Repl';
|
|
import { ApplicationContract } from '@ioc:Adonis/Core/Application';
|
|
/**
|
|
* Define repl bindings. The method must be invoked when application environment
|
|
* is set to repl.
|
|
*/
|
|
export declare function defineReplBindings(app: ApplicationContract, Repl: ReplContract): void;
|