codeBlock (2)SummaryWraps the content inside a codeblock with the specified languagedeclare function codeBlock<L extends string, C extends string>(language: L, content: C): `\`\`\`${L}\n${C}\`\`\``;Type ParametersNameConstraintsOptionalDefaultDescriptionLstringNoNoneCstringNoNoneParametersNameTypeOptionalDescriptionlanguageLNoThe language for the codeblockcontentCNoThe content to wrap