tridion-sites-extensions-api-docs

Home > @tridion-sites/models > StringSearchMode

StringSearchMode type

* 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';