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 null values.
*/
static execute(func: Function, args?: Array): void;
}
}
export default starling.utils.Execute;