piral-core
Version:
The core library for creating a Piral instance.
16 lines (15 loc) • 381 B
TypeScript
import * as React from 'react';
import { LoadPiletsOptions } from 'piral-base';
/**
* The props of the Mediator component.
*/
export interface MediatorProps {
/**
* The options for loading the pilets.
*/
options: LoadPiletsOptions;
}
/**
* The Mediator component for interfacing with pilets loading.
*/
export declare const Mediator: React.FC<MediatorProps>;