Skip to content

Commit

Permalink
Restore delete-budget update
Browse files Browse the repository at this point in the history
  • Loading branch information
twk3 committed Dec 29, 2023
1 parent b4ae74a commit 0b5c915
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/loot-core/src/types/server-handlers.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,10 @@ export interface ServerHandlers {

'close-budget': () => Promise<'ok'>;

'delete-budget': (arg: { id; cloudFileId? }) => Promise<'ok'>;
'delete-budget': (arg: {
id?: string;
cloudFileId?: string;
}) => Promise<'ok'>;

'create-budget': (arg: {
budgetName?;
Expand Down

0 comments on commit 0b5c915

Please sign in to comment.