piral
Version:
The all-in-one piral package.
13 lines (12 loc) • 448 B
TypeScript
import { PiralRenderOptions } from './types';
/**
* Sets up a new Piral instance and renders it using the provided options.
* @param options The options to use when setting up the Piral instance.
* @deprecated Use `createInstance` with `render` directly.
* @example
```ts
import { renderInstance } from 'piral';
renderInstance();
```
*/
export declare function renderInstance(options?: PiralRenderOptions): import("piral-core").PiralInstance;