export interface PayrollListQuery { employeeType?: string[]; company?: string; isWagesPaid?: boolean; isThrPaid?: boolean; id?: string; } export interface PutPaySalaryBody { kasbon: number | null; } export interface PutInternWagesBody { id: string[]; upah: number; lembur: number; kunjungan: number; } export interface PutCancelSalaryAndThrBody { [key: string]: string[]; }