@candlerip/shared3 0.0.74 → 0.0.76

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.74",
3
+ "version": "0.0.76",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -0,0 +1,6 @@
1
+ export type CandlesCount = {
2
+ candlesCount: {
3
+ burning: number;
4
+ burned: number;
5
+ };
6
+ };
@@ -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';
package/src/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './aws/index.js';
2
+ export * from './candle/index.js';
2
3
  export * from './cookie/index.js';
3
4
  export * from './database/index.js';
4
5
  export * from './date/index.js';
package/src/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './aws/index.js';
2
+ export * from './candle/index.js';
2
3
  export * from './cookie/index.js';
3
4
  export * from './database/index.js';
4
5
  export * from './date/index.js';
@@ -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
  }