Skip to content

Commit 5602fb4

Browse files
committed
Create AppLayoutDocs.d.ts
1 parent ca29342 commit 5602fb4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
export interface AppLayoutDocsProps {
2+
BannerComponent: React.ElementType;
3+
cardOptions: {
4+
description: string;
5+
title: string;
6+
};
7+
children: React.ReactNode;
8+
description: string;
9+
disableAd: boolean;
10+
disableLayout: boolean;
11+
disableToc: boolean;
12+
hasTabs: boolean;
13+
location: string;
14+
title: string;
15+
toc: any[];
16+
}
17+
18+
export default React.ComponentType<AppLayoutDocsProps>;

0 commit comments

Comments
 (0)