UNPKG

@flashport/flashport

Version:

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

23 lines (22 loc) 591 B
/** * SpecialPropertySplitter * A proxy setter for special properties * * @author Zeh Fernando * @version 1.0.0 * @private */ export declare class SpecialPropertySplitter { parameters: any[]; splitValues: Function; /** * Builds a new group special property object. * * @param p_splitFunction Function Reference to the function used to split a value */ constructor(p_splitFunction: Function, p_parameters: any[]); /** * Converts the instance to a string that can be used when trace()ing the object */ toString: () => string; }