Skip to content

Commit

Permalink
Partial is better
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jul 3, 2023
1 parent 7f41c17 commit 6d72f9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions denops/ddu/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ export type Custom = {
export type UserSource = {
name: SourceName;
options?: Partial<SourceOptions>;
params?: BaseSourceParams;
params?: Partial<BaseSourceParams>;
};

export type UserFilter = FilterName | {
name: FilterName;
options?: Partial<FilterOptions>;
params?: BaseFilterParams;
params?: Partial<BaseFilterParams>;
};

export type SourceInfo = {
Expand Down

0 comments on commit 6d72f9e

Please sign in to comment.