SQLEditorNav.constants.ts13 lines · main
| 1 | export type SectionState = { |
| 2 | shared: boolean |
| 3 | favorite: boolean |
| 4 | private: boolean |
| 5 | community: boolean |
| 6 | } |
| 7 | |
| 8 | export const DEFAULT_SECTION_STATE: SectionState = { |
| 9 | shared: false, |
| 10 | favorite: false, |
| 11 | private: true, |
| 12 | community: true, |
| 13 | } |