| 7 | */ |
| 8 | |
| 9 | export interface Config { |
| 10 | collections: { |
| 11 | users: User; |
| 12 | products: Product; |
| 13 | media: Media; |
| 14 | product_files: ProductFile; |
| 15 | orders: Order; |
| 16 | 'payload-preferences': PayloadPreference; |
| 17 | 'payload-migrations': PayloadMigration; |
| 18 | }; |
| 19 | globals: {}; |
| 20 | } |
| 21 | export interface User { |
| 22 | id: string; |
| 23 | products?: (string | Product)[] | null; |
nothing calls this directly
no outgoing calls
no test coverage detected