@candlerip/shared3 0.0.158 → 0.0.159
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
package/src/backend/dictionary/translation-id/excluded/compose-excluded-translation-ids/type.d.ts
CHANGED
@@ -2,6 +2,6 @@ import { TranslationId } from '../../../../../dictionary/index.js';
|
|
2
2
|
import { Page } from '../../../../../page/index.js';
|
3
3
|
export type ComposeExcludedTranslationIds = (page: Page, options?: ExcludedTranslationIdOptions) => TranslationId[];
|
4
4
|
export type ExcludedTranslationIdOptions = {
|
5
|
-
isAuthenticated
|
6
|
-
isCookieConsent
|
5
|
+
isAuthenticated?: boolean;
|
6
|
+
isCookieConsent?: boolean;
|
7
7
|
};
|