Preview:ts type ValidEnv<T extends Record<string, unknown> = Record<string, unknown>> = { [K: string]: T & {name: typeof K} } const env = { dev: { name: "dev", data: "data" }, prod: { //<----------------------------, name: "prodX", //<--- "prodX" !== "prod" ...
You can choose specific lines to embed by selecting them before copying the link.