mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 01:25:55 +02: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);
|
||
|
}
|
||
|
}
|
||
|
}
|