UNPKG

@restmatic/jwt-session

Version:

Provides Authentication to the RestMatic platform.

13 lines (12 loc) 347 B
/** * @file JWTuser * @author Jim Bulkowski <jim.b@paperelectron.com> * @project jwt-session * @license MIT {@link http://opensource.org/licenses/MIT} */ export interface JWTuser { init: () => any; update: () => any; expire: (cb: any) => any; } export declare const JWTuser: import("@pomegranate/plugin-tools").InjectableBuilder;