@candlerip/shared3 0.0.73 → 0.0.74
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
import { CandleMaintenanceDictionary } from '../../candle-dictionary/index.js';
|
2
|
+
import { CommonPageDictionary } from '../common-page-dictionary/index.js';
|
2
3
|
export interface AddCandlePageDictionary {
|
3
|
-
|
4
|
-
|
5
|
-
|
4
|
+
common: CommonPageDictionary;
|
5
|
+
page: {
|
6
|
+
maintenance: {
|
7
|
+
personCandles: string;
|
8
|
+
candleMaintenance: CandleMaintenanceDictionary;
|
9
|
+
};
|
10
|
+
title: string;
|
6
11
|
};
|
7
|
-
title: string;
|
8
12
|
}
|