首页新增新增&日活报表
This commit is contained in:
+20
@@ -37,6 +37,26 @@ declare namespace Api {
|
||||
}>;
|
||||
[key: string]: unknown;
|
||||
}
|
||||
|
||||
interface DeviceDailySeries {
|
||||
name: string;
|
||||
data: number[];
|
||||
}
|
||||
|
||||
interface DeviceDailyStats {
|
||||
dates: string[];
|
||||
series: DeviceDailySeries[];
|
||||
total: number;
|
||||
}
|
||||
|
||||
interface ActiveDailyStats {
|
||||
dates: string[];
|
||||
series: DeviceDailySeries[];
|
||||
latest: {
|
||||
date: string;
|
||||
total: number;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
namespace User {
|
||||
|
||||
Vendored
+4
@@ -67,6 +67,8 @@ declare module 'vue' {
|
||||
NModal: typeof import('naive-ui')['NModal']
|
||||
NNotificationProvider: typeof import('naive-ui')['NNotificationProvider']
|
||||
NPagination: typeof import('naive-ui')['NPagination']
|
||||
NRadioButton: typeof import('naive-ui')['NRadioButton']
|
||||
NRadioGroup: typeof import('naive-ui')['NRadioGroup']
|
||||
NScrollbar: typeof import('naive-ui')['NScrollbar']
|
||||
NSelect: typeof import('naive-ui')['NSelect']
|
||||
NSpace: typeof import('naive-ui')['NSpace']
|
||||
@@ -152,6 +154,8 @@ declare global {
|
||||
const NModal: typeof import('naive-ui')['NModal']
|
||||
const NNotificationProvider: typeof import('naive-ui')['NNotificationProvider']
|
||||
const NPagination: typeof import('naive-ui')['NPagination']
|
||||
const NRadioButton: typeof import('naive-ui')['NRadioButton']
|
||||
const NRadioGroup: typeof import('naive-ui')['NRadioGroup']
|
||||
const NScrollbar: typeof import('naive-ui')['NScrollbar']
|
||||
const NSelect: typeof import('naive-ui')['NSelect']
|
||||
const NSpace: typeof import('naive-ui')['NSpace']
|
||||
|
||||
Reference in New Issue
Block a user