update typescript to 3.9.5

This commit is contained in:
Yanzhen Yu
2020-06-12 18:32:48 +08:00
parent 8766335c82
commit 7feb2c945c
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;