N-FIN-47: enhance the action response interface

The interface got a new property called data which can be typed using generics.
This commit is contained in:
Markus Thielker 2024-03-17 17:17:57 +01:00
parent bdbb80121a
commit c64c5fed35
No known key found for this signature in database

View file

@ -1,5 +1,6 @@
export interface ActionResponse {
export interface ActionResponse<T = any> {
type: 'success' | 'info' | 'warning' | 'error';
message: string;
redirect?: string;
data?: T;
}