plugin-tls
Version:
plugin-tls 是插件系统相应的工具,可快速地让任何模块具备插件机制
14 lines (8 loc) • 481 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [plugin-tls](./plugin-tls.md) > [ReplaceConstructorParameters](./plugin-tls.replaceconstructorparameters.md)
## ReplaceConstructorParameters type
替换构建函数的参数
**Signature:**
```typescript
export type ReplaceConstructorParameters<C extends new (...args: any) => any, NewParms extends any[]> = new (...args: NewParms) => InstanceType<C>;
```