5 lines
155 B
TypeScript
5 lines
155 B
TypeScript
// these arrays contain the ids of the corporates that have paid or not paid
|
|
export interface PaymentsStatus {
|
|
pending: string[];
|
|
done: string[];
|
|
} |