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