/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Represents the SearchField that configures the way a data field is searched. */ export interface SearchField { /** * The name of the searched field. */ field: string; /** * The string operator that will be used for search. */ operator?: string; /** * Defines if the search is case sensitive. */ ignoreCase?: boolean; }