UNPKG

@metamask/snaps-sdk

Version:

A library containing the core functionality for building MetaMask Snaps

50 lines 2.36 kB
import type { AddressElement } from "./Address.mjs"; import type { AvatarElement } from "./Avatar.mjs"; import type { BannerElement } from "./Banner.mjs"; import type { BoxElement } from "./Box.mjs"; import type { CardElement } from "./Card.mjs"; import type { ContainerElement } from "./Container.mjs"; import type { CopyableElement } from "./Copyable.mjs"; import type { DividerElement } from "./Divider.mjs"; import type { FooterElement } from "./Footer.mjs"; import type { StandardFormElement } from "./form/index.mjs"; import type { StandardFormattingElement } from "./formatting/index.mjs"; import type { HeadingElement } from "./Heading.mjs"; import type { IconElement } from "./Icon.mjs"; import type { ImageElement } from "./Image.mjs"; import type { LinkElement } from "./Link.mjs"; import type { RowElement } from "./Row.mjs"; import type { SectionElement } from "./Section.mjs"; import type { SkeletonElement } from "./Skeleton.mjs"; import type { SpinnerElement } from "./Spinner.mjs"; import type { TextElement } from "./Text.mjs"; import type { TooltipElement } from "./Tooltip.mjs"; import type { ValueElement } from "./Value.mjs"; export * from "./form/index.mjs"; export * from "./formatting/index.mjs"; export * from "./Address.mjs"; export * from "./Avatar.mjs"; export * from "./Box.mjs"; export * from "./Card.mjs"; export * from "./Copyable.mjs"; export * from "./Divider.mjs"; export * from "./Value.mjs"; export * from "./Heading.mjs"; export * from "./Icon.mjs"; export * from "./Image.mjs"; export * from "./Link.mjs"; export * from "./Row.mjs"; export * from "./Spinner.mjs"; export * from "./Text.mjs"; export * from "./Tooltip.mjs"; export * from "./Footer.mjs"; export * from "./Container.mjs"; export * from "./Section.mjs"; export * from "./Banner.mjs"; export * from "./Skeleton.mjs"; export type * from "./utils.mjs"; /** * A built-in JSX element, which can be used in a Snap user interface. */ export type JSXElement = StandardFormElement | StandardFormattingElement | AvatarElement | AddressElement | BoxElement | CardElement | ContainerElement | CopyableElement | DividerElement | FooterElement | ValueElement | HeadingElement | IconElement | ImageElement | LinkElement | RowElement | SectionElement | SpinnerElement | TextElement | TooltipElement | BannerElement | SkeletonElement; //# sourceMappingURL=index.d.mts.map