aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-shared/src/ts/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/react-shared/src/ts/types.ts')
-rw-r--r--packages/react-shared/src/ts/types.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/react-shared/src/ts/types.ts b/packages/react-shared/src/ts/types.ts
index e4fe7bff9..f9d561d1a 100644
--- a/packages/react-shared/src/ts/types.ts
+++ b/packages/react-shared/src/ts/types.ts
@@ -7,3 +7,7 @@ export enum HeaderSizes {
H2 = 'h2',
H3 = 'h3',
}
+
+export interface MenuSubsectionsBySection {
+ [section: string]: string[];
+}