strapi-plugin-logz
Version:
Automatically capture and record the API calls made to your Strapi application
10 lines (9 loc) • 544 B
TypeScript
import { DashboardTotal, LoginVsRegister, RequestsOverTime } from "../types";
export declare const downloadLogs: ({ start, end }: {
start?: Date | string;
end?: Date | string;
}) => Promise<void>;
export declare const getDashboardTotals: () => Promise<DashboardTotal>;
export declare const requestsOverTime: (filterBy?: string) => Promise<RequestsOverTime[]>;
export declare const loginVsRegister: (filterBy?: string) => Promise<LoginVsRegister[]>;
export declare const mostAccessed: (filterBy?: string) => Promise<RequestsOverTime[]>;