fix(react): make config options optional

This commit is contained in:
Pavel Prichodko 2022-04-19 14:09:34 +02:00
parent 1d01e5959d
commit f66fa8e231
No known key found for this signature in database
GPG Key ID: 8E4C82D464215E83
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
}
}