UNPKG

strapi-plugin-firebase-authentication

Version:

Allows easy integration between clients utilizing Firebase for authentication and Strapi

21 lines (20 loc) 425 B
/** * Config for Gen Types Plugin */ export type FirebaseAuthConfig = { /** * Any key to encrypt the firebase json file * * @default 'your-key-here' */ firebaseJsonEncryptionKey: string; }; declare const _default: { default: ({ env }: { env: any; }) => { firebaseJsonEncryptionKey: any; }; validator(config: FirebaseAuthConfig): void; }; export default _default;