UNPKG

lbx-jwt

Version:

Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.

12 lines (11 loc) 412 B
/** * Encapsulates functionality of the handlebars package. */ export declare abstract class HandlebarsUtilities { /** * Compiles the given data to a html template. * @param data - The data that should be compiled. This is usually the string result of reading an html file. * @returns The compiled templates. */ static compile(data: unknown): HandlebarsTemplateDelegate<unknown>; }