File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,6 @@ type Compilation = {
141141 id : string ;
142142 exports : any ;
143143 hot : {
144- enabled : ( ) => boolean ;
145144 accept : Function | ( ( arg : string | string [ ] , cb : Function ) => void ) ;
146145 decline : ( path : string | Array < string > ) => void ;
147146 dispose : ( cb : Function ) => void ;
Original file line number Diff line number Diff line change @@ -401,15 +401,18 @@ export type Modal = {
401401
402402export type PackageJSON = {
403403 name : string ;
404- description : string ;
405- keywords : string [ ] ;
406- main : string ;
407- dependencies : {
404+ version : string ;
405+ description ?: string ;
406+ keywords ?: string [ ] ;
407+ main ?: string ;
408+ dependencies ?: {
408409 [ dep : string ] : string ;
409410 } ;
410- devDependencies : {
411+ devDependencies ? : {
411412 [ dep : string ] : string ;
412413 } ;
414+ jest ?: object ;
415+ resolutions ?: { [ dependency : string ] : string } ;
413416} ;
414417
415418export type UploadFile = {
You can’t perform that action at this time.
0 commit comments