update typescript to 3.9.5

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent d57cae3d51
commit 6b10e1c4ee
9 changed files with 92 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
import { playerConfig, actionWithDelay } from '../types';
export default class Timer {
import { playerConfig, actionWithDelay, eventWithTime } from '../types';
export declare class Timer {
timeOffset: number;
private actions;
private config;
@@ -11,3 +11,4 @@ export default class Timer {
clear(): void;
private findActionIndex;
}
export declare function getDelay(event: eventWithTime, baselineTime: number): number;