UNPKG

@muppet-kit/shared

Version:

Shared utilities and types for Muppet Kit.

15 lines (12 loc) 421 B
import { Hono } from 'hono'; import { S as SanitizedInspectorConfig } from '../inspector-xV8top6o.js'; import 'events'; import 'http'; import 'worker_threads'; import 'zod'; type InspectorActionOptions = { options: Record<string, string>; app: (config: SanitizedInspectorConfig) => Hono; }; declare function inspectorAction({ options, app, }: InspectorActionOptions): Promise<void>; export { inspectorAction };