Skip to content

Commit

Permalink
[Autocomplete] Add missing startAfter type (#20542)
Browse files Browse the repository at this point in the history
  • Loading branch information
dohomi authored Apr 14, 2020
1 parent a4af02c commit 73a5ddd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ import * as React from 'react';
export interface CreateFilterOptionsConfig<T> {
ignoreAccents?: boolean;
ignoreCase?: boolean;
limit?: number;
matchFrom?: 'any' | 'start';
startAfter?: number;
stringify?: (option: T) => string;
trim?: boolean;
limit?: number;
}

export interface FilterOptionsState<T> {
Expand Down

0 comments on commit 73a5ddd

Please sign in to comment.