No need to export constructor
This commit is contained in:
parent
5617d0f591
commit
e3b8fe7e1e
1 changed files with 1 additions and 1 deletions
2
lib/index.d.ts
vendored
2
lib/index.d.ts
vendored
|
@ -50,7 +50,7 @@ import { Functionalify, Typify } from './functional';
|
|||
type FunctionalInterface =
|
||||
Functionalify<Typify<ReadChannel<any>>, ReadChannel<any>> & Functionalify<Typify<WriteChannel<any>>, WriteChannel<any>>
|
||||
|
||||
export type ChannelConstructor = {
|
||||
type ChannelConstructor = {
|
||||
<T>(length?: number): ReadWriteChannel<T>;
|
||||
new <T>(length?: number): ReadWriteChannel<T>;
|
||||
all<T>(...values: T[]): ReadWriteChannel<T>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue