plugin-tls
Version:
plugin-tls 是插件系统相应的工具,可快速地让任何模块具备插件机制
14 lines (8 loc) • 361 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [plugin-tls](./plugin-tls.md) > [HostInst](./plugin-tls.hostinst.md)
## HostInst type
插件宿主的实例类型
**Signature:**
```typescript
export type HostInst<H> = H extends new (...args: any) => Object ? InstanceType<H> : H;
```