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

12 lines
291 B
TypeScript
Raw Normal View History

export default class BSTreeViewEventOptions {
silent: boolean = false;
ignoreChildren: boolean = false;
lazyLoad: boolean = false;
constructor(options: BSTreeViewEventOptions|object = null) {
if(options) {
Object.assign(this, options);
}
}
}