We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8798a5e commit 5a49b73Copy full SHA for 5a49b73
2 files changed
test/_community/payload-types.ts
@@ -96,6 +96,9 @@ export interface Config {
96
menu: MenuSelect<false> | MenuSelect<true>;
97
};
98
locale: null;
99
+ widgets: {
100
+ collections: CollectionsWidget;
101
+ };
102
user: User;
103
jobs: {
104
tasks: unknown;
@@ -435,6 +438,16 @@ export interface MenuSelect<T extends boolean = true> {
435
438
createdAt?: T;
436
439
globalType?: T;
437
440
}
441
+/**
442
+ * This interface was referenced by `Config`'s JSON-Schema
443
+ * via the `definition` "collections_widget".
444
+ */
445
+export interface CollectionsWidget {
446
+ data?: {
447
+ [k: string]: unknown;
448
449
+ width: 'full';
450
+}
451
/**
452
* This interface was referenced by `Config`'s JSON-Schema
453
* via the `definition` "auth".
0 commit comments