@ember/test-helpers
Version:
Helpers for testing Ember.js applications
11 lines (10 loc) • 483 B
TypeScript
/**
Checks if the currently running Ember version is greater than or equal to the
specified major and minor version numbers.
@private
@param {number} major the major version number to compare
@param {number} minor the minor version number to compare
@returns {boolean} true if the Ember version is >= MAJOR.MINOR specified, false otherwise
*/
export default function hasEmberVersion(major: number, minor: number): boolean;
//# sourceMappingURL=has-ember-version.d.ts.map