Skip to content

BeforeInstall

@tsed/passport

Usage

typescript
import { BeforeInstall } from "@tsed/passport";

See /packages/security/passport/src/types/interfaces/BeforeInstall.ts.

Overview

ts
interface BeforeInstall<Settings = any> {
    $beforeInstall(setting: Settings): Promise<Settings> | Settings | void;
}

$beforeInstall

ts
$beforeInstall(setting: Settings): Promise<Settings> | Settings | void;

Released under the MIT License.