wxapp使用submodule

This commit is contained in:
lik
2026-05-27 15:10:30 +08:00
parent 43436f9a37
commit afc0e4d2e2
957 changed files with 14404 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
export interface TimeData {
DD: number;
HH: number;
mm: number;
ss: number;
SSS: number;
}
export declare const TimeDataUnit: {
DD: string;
HH: string;
mm: string;
ss: string;
SSS: string;
};
export declare const parseTimeData: (time: number) => TimeData;
export declare const isSameSecond: (time1: number, time2: number) => boolean;
export declare type TTimeList = {
digit: string;
unit: string;
match: string;
}[];
export declare const parseFormat: (time: number, format: string) => {
timeText: string;
timeList: TTimeList;
};