the expected type comes from property

Solutions on MaxInterview for the expected type comes from property by the best coders in the world

showing results for - "the expected type comes from property"
Victoria
23 Feb 2016
1type NewBalance = {
2	user_id: number
3	email: string
4	kodeTransfer: number
5	jumlahUang: string
6	jumlahPenarikan: string
7	waktuPenarikan: any
8	historyTopupSaldo: INewFindBalanceHistory[] // add empty array how to fix this issue
9	tanggalPembuatan: any
10}
11
12export interface INewFindBalance {
13	reportSaldoUser: NewBalance
14}