import { DeepPartial } from "../../../src" import { Comment } from "./entity/Comment" describe("github issues > #6580 DeepPartial does not handle `any` and `{[k: string]}`", () => { function attemptDeepPartial(entityLike: DeepPartial): void {} it("DeepPartial should correctly handle any", () => { attemptDeepPartial({ any: { foo: "bar", }, }) }) it("DeepPartial should correctly handle {[k: string]: any}", () => { attemptDeepPartial({ object: { foo: "bar", }, }) }) })