UNPKG

@zhengxs/wechaty-plugin-assistant

Version:
10 lines (8 loc) 204 B
import { Hooks, HooksName } from './hooks'; type ConfigHooks = { [K in HooksName]: Hooks[K]['exposed']; }; export interface PluginObject extends Partial<ConfigHooks> { name: string; } export {};