UNPKG

@metamask/snaps-sdk

Version:

A library containing the core functionality for building MetaMask Snaps

30 lines 1.54 kB
import type { AddressInputElement } from "./AddressInput.mjs"; import type { AssetSelectorElement } from "./AssetSelector.mjs"; import type { ButtonElement } from "./Button.mjs"; import type { CheckboxElement } from "./Checkbox.mjs"; import type { DropdownElement } from "./Dropdown.mjs"; import type { FieldElement } from "./Field.mjs"; import type { FileInputElement } from "./FileInput.mjs"; import type { FormElement } from "./Form.mjs"; import type { InputElement } from "./Input.mjs"; import type { OptionElement } from "./Option.mjs"; import type { RadioElement } from "./Radio.mjs"; import type { RadioGroupElement } from "./RadioGroup.mjs"; import type { SelectorElement } from "./Selector.mjs"; import type { SelectorOptionElement } from "./SelectorOption.mjs"; export * from "./AssetSelector.mjs"; export * from "./Button.mjs"; export * from "./Checkbox.mjs"; export * from "./Dropdown.mjs"; export * from "./Option.mjs"; export * from "./Radio.mjs"; export * from "./RadioGroup.mjs"; export * from "./Field.mjs"; export * from "./FileInput.mjs"; export * from "./Form.mjs"; export * from "./Input.mjs"; export * from "./Selector.mjs"; export * from "./SelectorOption.mjs"; export * from "./AddressInput.mjs"; export type StandardFormElement = AssetSelectorElement | AddressInputElement | ButtonElement | CheckboxElement | FormElement | FieldElement | FileInputElement | InputElement | DropdownElement | OptionElement | RadioElement | RadioGroupElement | SelectorElement | SelectorOptionElement; //# sourceMappingURL=index.d.mts.map