This commit is contained in:
Jeff King 2020-04-09 19:03:59 -07:00
Родитель 0ed5520e08
Коммит f3c2e5dd78
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -41,7 +41,13 @@ interface ViewerProps {
filterState?: IFilterState
/**
* The state applied when the user resets.
* The state applied when the user resets. If omitted, the default is:
* ```javascript
* {
* Baseline: { value: ['new', 'unchanged', 'updated'] },
* Suppression: { value: ['unsuppressed'] },
* }
* ```
*/
defaultFilterState?: IFilterState