UNPKG

piral-mithril

Version:

Plugin for integrating Mithril.js components in Piral.

12 lines (11 loc) 368 B
import type { PiralPlugin } from 'piral-core'; import type { PiletMithrilApi } from './types'; /** * Available configuration options for the Mithril.js plugin. */ export interface MithrilConfig { } /** * Creates new Pilet API extensions for integrating Mithril.js. */ export declare function createMithrilApi(config?: MithrilConfig): PiralPlugin<PiletMithrilApi>;