UNPKG

@sapphire/utilities

Version:
8 lines (6 loc) 222 B
/** * Wraps text in a markdown inline codeblock * @param content The expression to be wrapped in the codeblock */ declare function inlineCodeBlock<C extends string>(content: C): `\`${C}\``; export { inlineCodeBlock };