forked from orbit-oss/is
Fix lint issue
This commit is contained in:
parent
0e1cce5d45
commit
ab586df0f9
1 changed files with 1 additions and 3 deletions
|
|
@ -14,9 +14,7 @@ export interface ArrayLike {
|
|||
length: number;
|
||||
}
|
||||
|
||||
export interface Class<T = unknown> {
|
||||
new(...args: any[]): T;
|
||||
}
|
||||
export type Class<T = unknown> = new(...args: any[]) => T;
|
||||
|
||||
type DomElement = object & { nodeType: 1; nodeName: string };
|
||||
type NodeStream = object & { pipe: Function };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue