@candlerip/shared3 0.0.98 → 0.0.99
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
import { Auth } from '../../auth/index.js';
|
2
2
|
import { CookieConsent } from '../../cookie/index.js';
|
3
3
|
import { Dictionary, Language } from '../../dictionary/index.js';
|
4
|
+
import { CandleFilterSort } from '../../filter-sort/index.js';
|
4
5
|
import { CandlesPageData } from '../../page/index.js';
|
5
6
|
export interface CandlesPageServerSideProps {
|
6
7
|
auth: Auth;
|
7
8
|
cookieConsent?: CookieConsent;
|
8
9
|
dictionary: Dictionary;
|
10
|
+
filterSort: CandleFilterSort;
|
9
11
|
language: Language;
|
10
12
|
pageData: CandlesPageData;
|
11
13
|
}
|