mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
24 lines
836 B
TypeScript
24 lines
836 B
TypeScript
export interface ClearDataRequest {
|
|
readonly password: string;
|
|
}
|
|
|
|
export interface DataStatisticsResponse {
|
|
readonly totalAccountCount: string;
|
|
readonly totalTransactionCategoryCount: string;
|
|
readonly totalTransactionTagCount: string;
|
|
readonly totalTransactionCount: string;
|
|
readonly totalTransactionPictureCount: string;
|
|
readonly totalTransactionTemplateCount: string;
|
|
readonly totalScheduledTransactionCount: string;
|
|
}
|
|
|
|
export interface DisplayDataStatistics {
|
|
readonly totalAccountCount: string;
|
|
readonly totalTransactionCategoryCount: string;
|
|
readonly totalTransactionTagCount: string;
|
|
readonly totalTransactionCount: string;
|
|
readonly totalTransactionPictureCount: string;
|
|
readonly totalTransactionTemplateCount: string;
|
|
readonly totalScheduledTransactionCount: string;
|
|
}
|