mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
12 lines
No EOL
291 B
TypeScript
12 lines
No EOL
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);
|
|
}
|
|
}
|
|
} |