Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit cc1fa8b

Browse files
committed
test(): update test to current output
1 parent 150a65f commit cc1fa8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unnamed-default-export.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
declare module 'path' {
2-
import * as React from 'react';
2+
import {Component} from 'react';
33

44
export interface Props {
55
onClick?: (...args: any[]) => any;
66
}
77

8-
export default class extends React.Component<Props, any> {
8+
export default class extends Component<Props, any> {
99
render(): JSX.Element;
1010
}
1111
}

0 commit comments

Comments
 (0)