mirror of https://github.com/ghostfolio/ghostfolio
2 changed files with 9 additions and 5 deletions
@ -1,5 +1,7 @@ |
|||
import { Account } from '@prisma/client'; |
|||
|
|||
export interface CreateOrUpdateAccountDialogParams { |
|||
account: Omit<Account, 'createdAt' | 'updatedAt' | 'userId'>; |
|||
account: Omit<Account, 'createdAt' | 'id' | 'updatedAt' | 'userId'> & { |
|||
id: string | null; |
|||
}; |
|||
} |
|||
|
|||
Loading…
Reference in new issue