mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
26 lines
612 B
TypeScript
26 lines
612 B
TypeScript
import { init as initLootCore } from '@actual-app/core/server/main';
|
|
import type { InitConfig, lib } from '@actual-app/core/server/main';
|
|
|
|
export * from './methods';
|
|
export * as utils from './utils';
|
|
|
|
let internal: typeof lib | null = null;
|
|
|
|
export async function init(config: InitConfig = {}) {
|
|
internal = await initLootCore(config);
|
|
return internal;
|
|
}
|
|
|
|
export async function shutdown() {
|
|
if (internal) {
|
|
try {
|
|
await internal.send('sync');
|
|
} catch {
|
|
// most likely that no budget is loaded, so the sync failed
|
|
}
|
|
|
|
await internal.send('close-budget');
|
|
internal = null;
|
|
}
|
|
}
|