mirror of
https://gitlab.com/KevinRoebert/ClearUrls
synced 2025-12-17 14:45:37 +07:00
11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
export default class Rule {
|
|
private _rule: RegExp
|
|
|
|
constructor(rule: RegExp) {
|
|
this._rule = rule
|
|
}
|
|
|
|
get value() : RegExp {
|
|
return this._rule
|
|
}
|
|
} |