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