I am using the following code to create a custom Prisma type:
include: { student: true }
});
export type SgWithStudent = Prisma.StudentGuardianGetPayload<
ReturnType<() => typeof sgWithStudent>
>;```
The proble is ESLint is flagging this as `'sgWithStudent' is assigned a value but only used as a type.(@typescript-eslint/ no-unused-vars)`. I don't want to disable all unused var checking.. Is there a way I can re write this that won't trigger the warning?