This commit is contained in:
thednp 2021-11-12 18:05:53 +02:00
parent cd0898b67f
commit c786e062c0
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ import Tweens from '../objects/tweens.js';
import globalObject from '../objects/globalObject.js';
import Interpolate from '../objects/interpolate.js';
import onStart from '../objects/onStart.js';
import now from '../objects/now.js';
import now from '../util/now.js';
const Time = {};
Time.now = now;

View file

@ -18,7 +18,7 @@ declare module "src/objects/onStart" {
var _default: {};
export default _default;
}
declare module "src/objects/now" {
declare module "src/util/now" {
export default now;
let now: any;
}
@ -37,7 +37,7 @@ declare module "src/core/render" {
namespace Time {
export { now };
}
import now from "src/objects/now";
import now from "src/util/now";
}
declare module "src/objects/supportedProperties" {
var _default: {};