UNPKG

permix

Version:

Permix is a lightweight, framework-agnostic, type-safe permissions management library for JavaScript applications on the client and server sides.

10 lines (9 loc) 350 B
import type { Snippet } from 'svelte'; import type { DehydratedState } from '../core/index.mjs'; type $$ComponentProps = { state: DehydratedState<any>; children: Snippet; }; declare const PermixHydrate: import("svelte").Component<$$ComponentProps, {}, "">; type PermixHydrate = ReturnType<typeof PermixHydrate>; export default PermixHydrate;