mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
11 lines
331 B
TypeScript
11 lines
331 B
TypeScript
import { ApplicationContract } from '@ioc:Adonis/Core/Application';
|
|
/**
|
|
* Encryption provider to binding encryption class to the container
|
|
*/
|
|
export default class EncryptionProvider {
|
|
protected app: ApplicationContract;
|
|
constructor(app: ApplicationContract);
|
|
static needsApplication: boolean;
|
|
register(): void;
|
|
}
|