@inceptionbg/main 2.0.223 → 2.0.224
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/index.d.ts +8 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2249,9 +2249,15 @@ declare const i18nMainME_Latin: {
|
|
|
2249
2249
|
|
|
2250
2250
|
declare const BusinessYearChooser: FC;
|
|
2251
2251
|
|
|
2252
|
-
|
|
2252
|
+
interface BusinessYearPageProps {
|
|
2253
|
+
canReopenFiscalYear?: boolean;
|
|
2254
|
+
}
|
|
2255
|
+
declare const BusinessYearPage: FC<BusinessYearPageProps>;
|
|
2253
2256
|
|
|
2254
|
-
|
|
2257
|
+
interface FiscalYearLockManagerProps {
|
|
2258
|
+
canReopen?: boolean;
|
|
2259
|
+
}
|
|
2260
|
+
declare const FiscalYearLockManager: FC<FiscalYearLockManagerProps>;
|
|
2255
2261
|
|
|
2256
2262
|
declare const useFiscalYearStatus: () => {
|
|
2257
2263
|
isClosed: boolean;
|