mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-12-06 02:59:29 +00:00
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
|
|
export default class BSTreeViewEventOptions {
|
||
|
|
silent: boolean = false;
|
||
|
|
ignoreChildren: boolean = false;
|
||
|
|
|
||
|
|
lazyLoad: boolean = false;
|
||
|
|
|
||
|
|
constructor(options: BSTreeViewEventOptions|object = null) {
|
||
|
|
if(options) {
|
||
|
|
Object.assign(this, options);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|