strapi-plugin-firebase-authentication
Version:
Allows easy integration between clients utilizing Firebase for authentication and Strapi
35 lines (34 loc) • 754 B
TypeScript
declare const _default: {
admin: {
type: string;
routes: {
method: string;
path: string;
handler: string;
config: {
policies: string[];
};
}[];
};
"content-api": {
type: string;
routes: ({
method: string;
path: string;
handler: string;
config: {
auth: boolean;
policies: any[];
};
} | {
method: string;
path: string;
handler: string;
config: {
policies: string[];
auth?: undefined;
};
})[];
};
};
export default _default;