@candlerip/shared3 0.0.73 → 0.0.76
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/candle/candles-count/domain.d.ts +6 -0
- package/src/candle/candles-count/domain.js +1 -0
- package/src/candle/candles-count/index.d.ts +1 -0
- package/src/candle/candles-count/index.js +1 -0
- package/src/candle/index.d.ts +1 -0
- package/src/candle/index.js +1 -0
- package/src/dictionary/dictionary/page-dictionary/add-candle-page-dictionary/domain.d.ts +8 -4
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/ssr/server-side-props/add-candle-page-server-side-props/domain.d.ts +2 -0
package/package.json
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './domain.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './domain.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './candles-count/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './candles-count/index.js';
|
@@ -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
|
}
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
import { AddCandlePageDictionary, Language } from '../../../dictionary/index.js';
|
2
|
+
import { AddCandlePageData } from '../../../page/index.js';
|
2
3
|
export interface AddCandlePageServerSideProps {
|
3
4
|
dictionary: AddCandlePageDictionary;
|
4
5
|
language: Language;
|
6
|
+
pageData: AddCandlePageData;
|
5
7
|
}
|