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.cjs"; import type { AvatarElement } from "./Avatar.cjs"; import type { BannerElement } from "./Banner.cjs"; import type { BoxElement } from "./Box.cjs"; import type { CardElement } from "./Card.cjs"; import type { ContainerElement } from "./Container.cjs"; import type { CopyableElement } from "./Copyable.cjs"; import type { DividerElement } from "./Divider.cjs"; import type { FooterElement } from "./Footer.cjs"; import type { StandardFormElement } from "./form/index.cjs"; import type { StandardFormattingElement } from "./formatting/index.cjs"; import type { HeadingElement } from "./Heading.cjs"; import type { IconElement } from "./Icon.cjs"; import type { ImageElement } from "./Image.cjs"; import type { LinkElement } from "./Link.cjs"; import type { RowElement } from "./Row.cjs"; import type { SectionElement } from "./Section.cjs"; import type { SkeletonElement } from "./Skeleton.cjs"; import type { SpinnerElement } from "./Spinner.cjs"; import type { TextElement } from "./Text.cjs"; import type { TooltipElement } from "./Tooltip.cjs"; import type { ValueElement } from "./Value.cjs"; export * from "./form/index.cjs"; export * from "./formatting/index.cjs"; export * from "./Address.cjs"; export * from "./Avatar.cjs"; export * from "./Box.cjs"; export * from "./Card.cjs"; export * from "./Copyable.cjs"; export * from "./Divider.cjs"; export * from "./Value.cjs"; export * from "./Heading.cjs"; export * from "./Icon.cjs"; export * from "./Image.cjs"; export * from "./Link.cjs"; export * from "./Row.cjs"; export * from "./Spinner.cjs"; export * from "./Text.cjs"; export * from "./Tooltip.cjs"; export * from "./Footer.cjs"; export * from "./Container.cjs"; export * from "./Section.cjs"; export * from "./Banner.cjs"; export * from "./Skeleton.cjs"; export type * from "./utils.cjs"; /** * 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.cts.map