Skip to content

Commit

Permalink
fix: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
francoischalifour committed Nov 18, 2020
1 parent 9fc796b commit e56b8ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bundlesize.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"files": [
{
"path": "packages/autocomplete-core/dist/umd/index.production.js",
"maxSize": "4.5 kB"
"maxSize": "4.75 kB"
},
{
"path": "packages/autocomplete-js/dist/umd/index.production.js",
"maxSize": "8 kB"
"maxSize": "8.25 kB"
},
{
"path": "packages/autocomplete-preset-algolia/dist/umd/index.production.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function getNormalizedSources<TItem>(
params: GetSourcesParams<TItem>
) => MaybePromise<Array<AutocompleteSource<TItem>>>,
options: GetSourcesParams<TItem>
): Promise<Array<InternalAutocompleteSource<TItem>> | void> {
): Promise<Array<InternalAutocompleteSource<TItem>>> {
return runConcurrentSafePromiseForGetSources(getSources(options)).then(
(sources) => {
return Promise.all(
Expand Down
3 changes: 0 additions & 3 deletions packages/autocomplete-preset-algolia/src/highlight/PathOf.ts

This file was deleted.

0 comments on commit e56b8ac

Please sign in to comment.