UNPKG

piral-million

Version:

Plugin for integrating Million components in Piral.

13 lines (12 loc) 449 B
import type { PiralPlugin } from 'piral-core'; import { MillionConverterOptions } from './converter'; import type { PiletMillionApi } from './types'; /** * Available configuration options for the Million plugin. */ export interface MillionConfig extends MillionConverterOptions { } /** * Creates new Pilet API extensions for integrating Million. */ export declare function createMillionApi(config?: MillionConfig): PiralPlugin<PiletMillionApi>;