UMD Web Elements Library
    Preparing search index...

    Variable inlineConst

    inline: {
        caption: (
            props: TypeMediaInlineRequirements,
        ) => {
            destroy?: () => void;
            element: HTMLElement;
            events: { load: () => null | undefined };
            styles: string;
            update?: (props: Partial<BuilderOptions>) => void;
        };
        standard: (props: TypeMediaInlineRequirements) => ElementModel<HTMLElement>;
        wrapped: (
            props: TypeMediaInlineWrappedRequirements,
        ) => {
            destroy?: () => void;
            element: HTMLElement;
            events: { load: () => null | undefined };
            styles: string;
            update?: (props: Partial<BuilderOptions>) => void;
        };
    } = ...

    Type Declaration

    • caption: (
          props: TypeMediaInlineRequirements,
      ) => {
          destroy?: () => void;
          element: HTMLElement;
          events: { load: () => null | undefined };
          styles: string;
          update?: (props: Partial<BuilderOptions>) => void;
      }
    • standard: (props: TypeMediaInlineRequirements) => ElementModel<HTMLElement>
    • wrapped: (
          props: TypeMediaInlineWrappedRequirements,
      ) => {
          destroy?: () => void;
          element: HTMLElement;
          events: { load: () => null | undefined };
          styles: string;
          update?: (props: Partial<BuilderOptions>) => void;
      }