fix(react): make config options optional

This commit is contained in:
Pavel Prichodko 2022-04-19 14:09:34 +02:00
parent 0ccea4b559
commit a52475dc1d
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ export interface Config {
theme?: 'light' | 'dark' | CustomTheme
router?: typeof BrowserRouter | typeof MemoryRouter | typeof HashRouter
options?: {
enableSidebar: boolean
enableMembers: boolean
enableSidebar?: boolean
enableMembers?: boolean
}
}