mirror of
https://github.com/bitwarden/jslib
synced 2026-01-18 16:33:13 +00:00
9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
export enum UriMatchType {
|
|
Domain = 0,
|
|
Host = 1,
|
|
StartsWith = 2,
|
|
Exact = 3,
|
|
RegularExpression = 4,
|
|
Never = 5,
|
|
}
|