UNPKG

nuxt-unlayer

Version:

Module used to add the Unlayer email builder to your Nuxt app.

7 lines (6 loc) 846 B
import type { UnlayerEditor, UnlayerOptions } from "@unlayer/types"; export type { AppearanceConfig, ColorPicker, DisplayMode, EditorSettings, Features, Fonts, LinkType, LinkTypeField, LinkTypeFieldOption, LinkTypes, LinkTypesSharedConfig, MergeTag, MergeTags, SpecialLink, SpecialLinks, Tabs, TextEditorCustomButton, ToolConfig, ToolsConfig, User, ExportChunksResult, ExportFromApiResult, ExportHtmlOptions, ExportHtmlResult, ExportImageFromApiOptions, ExportPdfFromApiOptions, ExportPlainTextOptions, ExportPlainTextResult, ExportZipFromApiOptions, JSONTemplate, SaveDesignOptions, } from "@unlayer/types"; /** Full configuration options accepted by the EmailEditor component. */ export type EditorProps = UnlayerOptions; /** A reference to the Unlayer editor instance returned by `createEditor`. */ export type EditorInstance = UnlayerEditor;