bitwarden-estensione-browser/libs/common/src/enums/uriMatchType.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
124 B
TypeScript
Raw Normal View History

export enum UriMatchType {
2018-03-02 19:50:26 +01:00
Domain = 0,
Host = 1,
StartsWith = 2,
Exact = 3,
RegularExpression = 4,
Never = 5,
}