@devgateway/dvz-ui-react
    Preparing search index...

    Variable customizerConst

    customizer: {
        components: {};
        getComponentByNameIgnoreCase: (
            name: string,
        ) => NamedExoticComponent<WithIntlProps<WrappedComponentProps<any>>> | null;
        getReducers: () => Record<
            string,
            (state: MapOf<{ mode: string }> | undefined, action: any) => any,
        >;
        reducers: Record<
            string,
            (state: MapOf<{ mode: string }> | undefined, action: any) => any,
        >;
        registerCustomEmbeddables: (
            components: Record<string, React.ComponentType<any>>,
        ) => void;
        registerCustomReducers: (
            reducers: (
                state: MapOf<{ mode: string }> | undefined,
                action: any,
            ) => any,
        ) => void;
    } = ...

    Type Declaration

    • components: {}
    • getComponentByNameIgnoreCase: (
          name: string,
      ) => NamedExoticComponent<WithIntlProps<WrappedComponentProps<any>>> | null
    • getReducers: () => Record<
          string,
          (state: MapOf<{ mode: string }> | undefined, action: any) => any,
      >
    • reducers: Record<string, (state: MapOf<{ mode: string }> | undefined, action: any) => any>
    • registerCustomEmbeddables: (components: Record<string, React.ComponentType<any>>) => void
    • registerCustomReducers: (
          reducers: (
              state: MapOf<{ mode: string }> | undefined,
              action: any,
          ) => any,
      ) => void