UNPKG

@solid-mediakit/auth-plugin

Version:

Package for easily creating server rpc functions in solid-start with goodies baked in

19 lines (18 loc) 454 B
import type babel from '@babel/core'; import { type FilterPattern } from '@rollup/pluginutils'; export { compileAuth } from './babel'; export interface AuthPluginOptions { babel?: babel.TransformOptions; filter?: { include?: FilterPattern; exclude?: FilterPattern; }; log?: boolean; redirectTo: string; authOpts: { name: string; dir: string; }; userKey?: string; } export * from './babel';