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