Home > @tridion-sites/models > StringSearchMode
* contains
- Matches the given substring in any location. * startsWith
- Matches the given string at the start. * endsWith
- Matches the given string at the end. * exactMatch
- Matches the given string exactly.
Signature:
export type StringSearchMode = 'contains' | 'startsWith' | 'endsWith' | 'exactMatch';