sass-template-common 0.1.27 → 0.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/sass-template-common.css +1 -1
- package/dist/sass-template-common.d.ts +5 -0
- package/dist/sass-template-common.js +1089 -1073
- package/dist/sass-template-common.umd.cjs +35 -35
- package/package.json +58 -58
|
@@ -701,6 +701,8 @@ export declare const getEnvironmentUrl: () => string | undefined;
|
|
|
701
701
|
|
|
702
702
|
export declare const getEnvironmentUrlFront: () => string | undefined;
|
|
703
703
|
|
|
704
|
+
export declare const getHydratorPath: () => string;
|
|
705
|
+
|
|
704
706
|
export declare const getImageUrl: (imageUrl: string) => Promise<string>;
|
|
705
707
|
|
|
706
708
|
export declare const getNextMeta: (config: Config, paths: Array<string>, page: number) => string;
|
|
@@ -1002,6 +1004,9 @@ export declare type LibraryConfig = {
|
|
|
1002
1004
|
CAPTCHA_KEY?: string;
|
|
1003
1005
|
COMMENTS_CAPTCHA_API_KEY?: string;
|
|
1004
1006
|
CAPTCHA_KEY_V2?: string;
|
|
1007
|
+
ASSETS_PREFIX?: string | Record<string, string>;
|
|
1008
|
+
ASSETS_PATH?: string;
|
|
1009
|
+
DEV?: boolean;
|
|
1005
1010
|
};
|
|
1006
1011
|
|
|
1007
1012
|
export declare interface Link {
|