UNPKG

@unicoderns/cerberus

Version:

Auth secure library

14 lines (13 loc) 273 B
/// <reference types="node" /> /*** Main general interfaces */ export interface Response { success: boolean; status: number; message: string; data?: any; err?: NodeJS.ErrnoException; } export interface Login { email: string; password: string; }