import { ISearch } from "../search"; import { ISourceSearch } from "../engine/source_search"; /** The object used to specify the arguments when searching for {@link IController}(s). */ export interface IControllerSearch extends ISearch { /** * Gets or sets search for Controllers with this Name. Wildcard can be used by prepending/appending * "%" to string. Example "%name%". */ name: string; /** * Gets or sets search for Controllers with this {@link ISourceSearch} Id. Available * SourceSearch options are:. Id */ sourceSearch: ISourceSearch; /** Gets or sets the row version of the {@link IController} search criteria. */ version?: number; } //# sourceMappingURL=controller_search.d.ts.map