1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/enums/uriMatchType.ts

9 lines
140 B
TypeScript
Raw Normal View History

export enum UriMatchType {
BaseDomain = 0,
Host = 1,
StartsWith = 2,
Exact = 3,
RegularExpression = 4,
Never = 5,
}