18 lines
552 B
TypeScript
18 lines
552 B
TypeScript
/**
|
|
* @memberof Tweenable.filters.token
|
|
* @param {Tweenable} tweenable
|
|
*/
|
|
export function tweenCreated(tweenable: Tweenable): void;
|
|
/**
|
|
* @memberof Tweenable.filters.token
|
|
* @param {Tweenable} tweenable
|
|
*/
|
|
export function beforeTween(tweenable: Tweenable): void;
|
|
/**
|
|
* @memberof Tweenable.filters.token
|
|
* @param {Tweenable} tweenable
|
|
*/
|
|
export function afterTween(tweenable: Tweenable): void;
|
|
export function doesApply(tweenable: Tweenable): boolean;
|
|
export type Tweenable = import("./tweenable").Tweenable;
|
|
//# sourceMappingURL=token.d.ts.map
|