@nicefer/types 1.0.146 → 1.0.147
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,11 +7,12 @@ export interface RadarItem {
|
|
|
7
7
|
title: string;
|
|
8
8
|
desc?: string;
|
|
9
9
|
/**
|
|
10
|
+
* null: No se usó nada en este item, solo es un registro
|
|
10
11
|
* 'event': Evento
|
|
11
12
|
* 'operating_expenses': Gastos operativos
|
|
12
13
|
* 'reversed': Reversión de fondos
|
|
13
14
|
*/
|
|
14
|
-
type:
|
|
15
|
+
type: null | 'event' | 'operating_expenses' | 'reversed';
|
|
15
16
|
icon: 'ok' | 'error' | 'waiting';
|
|
16
17
|
amountUsed: number;
|
|
17
18
|
createdAt: string;
|