Part-DB.Part-DB-server/assets/ts_src/BSTreeSearchOptions.ts

7 lines
No EOL
239 B
TypeScript

import BSTreeViewEventOptions from "./BSTreeViewEventOptions";
export default class BSTreeSearchOptions extends BSTreeViewEventOptions {
ignoreCase: boolean = true;
exactMatch: boolean = false;
revealResults: boolean = true;
}