strapi-plugin-firebase-authentication
Version:
Allows easy integration between clients utilizing Firebase for authentication and Strapi
10 lines (9 loc) • 449 B
TypeScript
import { Context, DefaultContext } from "koa";
declare const _default: {
setToken: (ctx: DefaultContext | Context) => Promise<void>;
setFirebaseConfigJson: (ctx: DefaultContext | Context) => Promise<void>;
getFirebaseConfigJson: (ctx: DefaultContext | Context) => Promise<any>;
delFirebaseConfigJson(ctx: DefaultContext | Context): Promise<void>;
restart(ctx: DefaultContext | Context): Promise<any>;
};
export default _default;