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

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);
}
}
}