starling-framework
Version:
A fast, productive library for 2D cross-platform development.
10 lines • 366 B
TypeScript
declare namespace starling.utils {
export class Execute {
/**
* Executes a function 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.
*/
static execute(func: Function, args?: Array<any>): void;
}
}
export default starling.utils.Execute;