How to do Array of not optional X Type
Probably there i have to use satisfies but i dont know how
export type TpkgManagerSupport = "npm" | "yarn" | "pnpm" | "bun";
export const pkgManagerSupportWrong: TpkgManagerSupport[] = ["npm", "pnpm", "bun"] as const; // should crash - no "yarn"
export const pkgManagerSupportCorrect: TpkgManagerSupport[] = ["npm","yarn", "pnpm", "bun"] as const; // Fine, has everypossible type of Tpkg...
Ping me in answer