sass-template-common 0.0.62 → 0.0.63

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.
@@ -687,6 +687,8 @@ export declare interface GetCommentsParams {
687
687
  apiToken: string;
688
688
  }
689
689
 
690
+ export declare function getConfig(): LibraryConfig;
691
+
690
692
  export declare const getDynamicSlots: (axiosApi: AxiosInstance, config: Config, imgSizes: {
691
693
  [key: string]: any;
692
694
  }, imgSizesVideo: {
@@ -864,6 +866,8 @@ export declare interface Info {
864
866
  };
865
867
  }
866
868
 
869
+ export declare function initLibrary(userConfig?: LibraryConfig): void;
870
+
867
871
  export declare interface ISection {
868
872
  name: string;
869
873
  slug: string;
@@ -935,6 +939,11 @@ declare type LazyLoaderProps = {
935
939
  };
936
940
  };
937
941
 
942
+ export declare type LibraryConfig = {
943
+ PUBLIC_IS_OFFLINE?: string;
944
+ apiKey?: string;
945
+ };
946
+
938
947
  export declare interface Link {
939
948
  url: string;
940
949
  canonical: string;