Skip to content

Commit afc0698

Browse files
michaelbeaumontnodkz
authored andcommitted
fix(typescript): Expose more types from resolvers
1 parent a9041b2 commit afc0698

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

src/resolvers.d.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/resolvers/index.d.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,22 @@ export {
6767

6868
export function getAvailableNames(): string[];
6969

70+
export { CountArgs } from './count';
71+
export { ConnectionArgs } from './connection';
72+
export { PaginationArgs } from './pagination';
73+
export { CreateOneArgs } from './createOne';
74+
export { CreateManyArgs } from './createMany';
75+
export { RemoveOneArgs } from './removeOne';
76+
export { RemoveByIdArgs } from './removeById';
77+
export { RemoveManyArgs } from './removeMany';
78+
export { UpdateOneArgs } from './updateOne';
79+
export { UpdateByIdArgs } from './updateById';
80+
export { UpdateManyArgs } from './updateMany';
81+
export { FindByIdArgs } from './findById';
82+
export { FindByIdsArgs } from './findByIds';
83+
export { FindOneArgs } from './findOne';
84+
export { FindManyArgs } from './findMany';
85+
7086
export const EMCResolvers: {
7187
findById: 'findById';
7288
findByIds: 'findByIds';

0 commit comments

Comments
 (0)