chore: properly working generated types within tests (#6288)

This commit is contained in:
Alessio Gravili
2024-05-09 17:12:51 -04:00
committed by GitHub
parent cfeac79b99
commit f7a2cf96b9
93 changed files with 7012 additions and 3097 deletions

View File

@@ -417,7 +417,6 @@ export interface Category {
/**
* This interface was referenced by `Config`'s JSON-Schema
* via the `definition` "ssr".
*/
export interface Ssr {
id: string;
slug: string;
@@ -640,3 +639,9 @@ export interface Footer {
updatedAt?: string | null;
createdAt?: string | null;
}
declare module 'payload' {
// @ts-ignore
export interface GeneratedTypes extends Config {}
}