import { AccountLedgerType, AccountNormalBalance } from '../constants/app'; import { IDefaultAttributes } from './commonInterface'; export interface IAccountLedgerModelAttributes extends IDefaultAttributes { id: string; instituteId: string; academicCalendarId: string; groupId: string; ledgerCode: string; ledgerName: string; ledgerType: AccountLedgerType; normalBalance: AccountNormalBalance; entityType?: string | null; entityId?: string | null; bankAccountId?: string | null; allowManualPosting: boolean; }