mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
16 lines
345 B
TypeScript
16 lines
345 B
TypeScript
export type ITelemetryData = {
|
|
providers: {
|
|
auth?: boolean;
|
|
data?: boolean;
|
|
router?: boolean;
|
|
notification?: boolean;
|
|
live?: boolean;
|
|
auditLog?: boolean;
|
|
i18n?: boolean;
|
|
accessControl?: boolean;
|
|
};
|
|
version: string;
|
|
resourceCount: number;
|
|
projectId?: string;
|
|
};
|