You've already forked openaccounting-web
mirror of
https://github.com/openaccounting/oa-web.git
synced 2025-12-10 13:50:54 +13:00
6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
|
|
export class SessionOptions {
|
||
|
|
createDefaultAccounts: boolean;
|
||
|
|
constructor(options: any = {}) {
|
||
|
|
this.createDefaultAccounts = options.createDefaultAccounts;
|
||
|
|
}
|
||
|
|
};
|