starling-framework
Version:
A fast, productive library for 2D cross-platform development.
11 lines (10 loc) • 346 B
TypeScript
declare namespace starling.utils
{
export class Execute
{
/** Executes a with the specified arguments. If the argument count does not match
* the function, the argument list is cropped / filled up with <code>null</code> values. */
public static execute(func:Function, args?:Array<any>):void;
}
}
export default starling.utils.Execute;