easy-email-extensions 4.3.4 → 4.3.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -48,6 +48,7 @@ export declare const blocks: {
48
48
  advanced_carousel: typeof Carousel;
49
49
  advanced_navbar: typeof Navbar;
50
50
  advanced_social: typeof Social;
51
+ advanced_hero: typeof Hero;
51
52
  advanced_wrapper: typeof Wrapper;
52
53
  advanced_section: typeof Section;
53
54
  advanced_group: typeof Group;
@@ -4,7 +4,7 @@ declare type ObjectComponent = {
4
4
  export declare class BlockAttributeConfigurationManager {
5
5
  private static map;
6
6
  static add(componentMap: ObjectComponent): void;
7
- static get<T extends ObjectComponent>(name: keyof T): string;
7
+ static get<T extends ObjectComponent>(name: keyof T): () => JSX.Element | null;
8
8
  static getMap(): ObjectComponent;
9
9
  }
10
10
  export {};