UNPKG

@flashport/flashport

Version:

FlashPort is a TypeScript 2D graphics library that largely replicates the Flash ActionScript 3.0 library

23 lines (22 loc) 624 B
/** * SpecialPropertyModifier * A special property which actually acts on other properties * * @author Zeh Fernando * @version 1.0.0 * @private */ export declare class SpecialPropertyModifier { modifyValues: Function; getValue: Function; /** * Builds a new special property modifier object. * * @param p_modifyFunction Function Function that returns the modifider parameters. */ constructor(p_modifyFunction: Function, p_getFunction: Function); /** * Converts the instance to a string that can be used when trace()ing the object */ toString: () => string; }