@@ -135,11 +135,13 @@ type ResolvedPostUpdateInput = {
135135 publishDate ?: import ( './node_modules/myprisma' ) . Prisma . PostUpdateInput [ 'publishDate' ]
136136}
137137
138+ export interface Session { }
139+
138140export declare namespace Lists {
139- export type Post < Session = any > = import ( '@keystone-6/core/types' ) . ListConfig < Lists . Post . TypeInfo < Session > >
141+ export type Post = import ( '@keystone-6/core/types' ) . ListConfig < Lists . Post . TypeInfo >
140142 namespace Post {
141143 export type Item = import ( './node_modules/myprisma' ) . Post
142- export type TypeInfo < Session = any > = {
144+ export type TypeInfo = {
143145 key : 'Post'
144146 isSingleton : false
145147 fields : 'id' | 'title' | 'content' | 'publishDate'
@@ -155,25 +157,25 @@ export declare namespace Lists {
155157 create : ResolvedPostCreateInput
156158 update : ResolvedPostUpdateInput
157159 }
158- all : __TypeInfo < Session >
160+ all : __TypeInfo
159161 }
160162 }
161163}
162- export type Context < Session = any > = import ( '@keystone-6/core/types' ) . KeystoneContext < TypeInfo < Session > >
163- export type Config < Session = any > = import ( '@keystone-6/core/types' ) . KeystoneConfig < TypeInfo < Session > >
164+ export type Context = import ( '@keystone-6/core/types' ) . KeystoneContext < TypeInfo >
165+ export type Config = import ( '@keystone-6/core/types' ) . KeystoneConfig < TypeInfo >
164166
165- export type TypeInfo < Session = any > = {
167+ export type TypeInfo = {
166168 lists : {
167- readonly Post : Lists . Post . TypeInfo < Session >
169+ readonly Post : Lists . Post . TypeInfo
168170 }
169171 prisma : import ( './node_modules/myprisma' ) . PrismaClient
170172 session : Session
171173}
172174
173- type __TypeInfo < Session = any > = TypeInfo < Session >
175+ type __TypeInfo = TypeInfo
174176
175- export type Lists < Session = any > = {
176- [ Key in keyof TypeInfo [ 'lists' ] ] ?: import ( '@keystone-6/core/types' ) . ListConfig < TypeInfo < Session > [ 'lists' ] [ Key ] >
177+ export type Lists = {
178+ [ Key in keyof TypeInfo [ 'lists' ] ] ?: import ( '@keystone-6/core/types' ) . ListConfig < TypeInfo [ 'lists' ] [ Key ] >
177179} & Record < string , import ( '@keystone-6/core/types' ) . ListConfig < any > >
178180
179181export { }
0 commit comments