UNPKG

@ghostry/finity-solidjs

Version:

Finite state management with exhaustiveness and transition enforcement for TypeScript.

9 lines (8 loc) 359 B
import type { Initialized as _Initialized } from '@ghostry/finity-core'; import type { Config } from './Types'; import _useRender from './useRender'; export type * from '@ghostry/finity-core'; export interface Initialized extends _Initialized { useRender: ReturnType<typeof _useRender>; } export declare const initialize: (config: Config) => Initialized;