Skip to content

Commit

Permalink
Merge pull request #879 from nextcloud/fix/uninitialized
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Jul 6, 2023
2 parents af4f4ac + 327cf57 commit 32fb66f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"OC": true
},
"extends": [
"@nextcloud"
"@nextcloud/eslint-config/typescript"
]
}
2 changes: 1 addition & 1 deletion lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import UploadPicker from './components/UploadPicker.vue'
export { Status as UploaderStatus } from './uploader.js'
export { Upload, Status as UploadStatus } from './upload.js'

let _uploader: Uploader
let _uploader: Uploader | null = null

/**
* Get an Uploader instance
Expand Down
1 change: 0 additions & 1 deletion lib/shims-vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ declare module '*.vue' {
const component: ReturnType<typeof defineComponent>
export default component
}

0 comments on commit 32fb66f

Please sign in to comment.