@undp/carbon-library 1.0.86 → 1.0.88
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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/Definitions/Definitions/programme.definitions.d.ts +2 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/Definitions/Definitions/programme.definitions.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
@@ -30,6 +30,7 @@ export interface ProgrammeProperties {
|
|
30
30
|
}
|
31
31
|
export interface ProgrammePropertiesR extends ProgrammeProperties {
|
32
32
|
programmeCostUSD: number;
|
33
|
+
estimatedProgrammeCostUSD: number;
|
33
34
|
}
|
34
35
|
export interface ProgrammePropertiesT extends ProgrammeProperties {
|
35
36
|
estimatedProgrammeCostUSD: number;
|
@@ -105,7 +106,7 @@ export declare const addCommSep: (value: any) => string;
|
|
105
106
|
export declare const addCommSepRound: (value: any) => string;
|
106
107
|
export declare const addRoundNumber: (value: any) => number;
|
107
108
|
export declare const addSpaces: (text: string) => string;
|
108
|
-
export declare const getFinancialFields: (programme: ProgrammeU) => {
|
109
|
+
export declare const getFinancialFields: (programme: ProgrammeU | ProgrammeR) => {
|
109
110
|
estimatedProgrammeCostUSD: string;
|
110
111
|
creditEst: string;
|
111
112
|
financingType: string;
|
package/dist/index.d.ts
CHANGED
@@ -236,6 +236,7 @@ interface ProgrammeProperties {
|
|
236
236
|
}
|
237
237
|
interface ProgrammePropertiesR extends ProgrammeProperties {
|
238
238
|
programmeCostUSD: number;
|
239
|
+
estimatedProgrammeCostUSD: number;
|
239
240
|
}
|
240
241
|
interface ProgrammePropertiesT extends ProgrammeProperties {
|
241
242
|
estimatedProgrammeCostUSD: number;
|
@@ -311,7 +312,7 @@ declare const addCommSep: (value: any) => string;
|
|
311
312
|
declare const addCommSepRound: (value: any) => string;
|
312
313
|
declare const addRoundNumber: (value: any) => number;
|
313
314
|
declare const addSpaces: (text: string) => string;
|
314
|
-
declare const getFinancialFields: (programme: ProgrammeU) => {
|
315
|
+
declare const getFinancialFields: (programme: ProgrammeU | ProgrammeR) => {
|
315
316
|
estimatedProgrammeCostUSD: string;
|
316
317
|
creditEst: string;
|
317
318
|
financingType: string;
|