type alias RecordWithColumnView codeRecord type with column type. ExamplesExample 1 type RecordWithColumn<"aaa"|"bbb"> => Record<"aaa"|"bbb", string> type RecordWithColumn<string> => Record<string, string | undefined> Type ParametersC extends stringView codeDefinitionstring extends C ? Record<string, string | undefined> : Record<C, string>View code