10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
import { Rule } from '../Rule';
|
|
|
|
/**
|
|
* The StudyMatchingRule Class extends the Rule Class.
|
|
*
|
|
* At present it does not add any new methods or attributes
|
|
* @type {StudyMatchingRule}
|
|
*/
|
|
HP.StudyMatchingRule = class StudyMatchingRule extends Rule {};
|