UNPKG

@veams/plugin-dom

Version:

The VeamsDOM plugin is simple plugin for which you need to pass a DOM handler like jQuery. For some other plugins VeamsDOM is a requirement.

17 lines (16 loc) 324 B
export interface DomOptions { DOM: any; } export interface DomPlugin { options: DomOptions; pluginName: string; initialize: any; } declare const VeamsDOM: { options: { DOM: any; }; pluginName: string; initialize: (Veams: any, { DOM }: DomOptions) => void; }; export default VeamsDOM;