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