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