@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines • 384 B
TypeScript
export class Operation {
/**
*
* @param {OperationType} operator
* @param {Array} operands
* @constructor
*/
constructor(operator: OperationType, operands: any[]);
/**
*
* @type {OperationType}
*/
operator: OperationType;
/**
*
* @type {Array}
*/
operands: any[];
}
//# sourceMappingURL=Operation.d.ts.map