27 lines
510 B
TypeScript
27 lines
510 B
TypeScript
export interface RequestStatus {
|
|
loading?:boolean
|
|
status?:boolean | undefined
|
|
message?:string
|
|
name?:string
|
|
data?:{}[] | [any] | {}
|
|
}
|
|
|
|
|
|
export interface User {
|
|
firstname?:string
|
|
lastname?:string
|
|
last_login?:string
|
|
message?:string
|
|
token?:string
|
|
customer_uid?:string
|
|
call_return?:string
|
|
}
|
|
|
|
|
|
export type PendingTableList = {
|
|
status?: string | boolean;
|
|
application_uid?: string
|
|
added?: string
|
|
loan_amount?: string
|
|
payment_month?: string
|
|
}[]; |