strikethrough
export declare function strikethrough<C extends string>(content: C): `~~${C}~~`;
export declare function strikethrough<C extends string>(content: C): `~~${C}~~`;
Formats the content into strike-through text.
Name | Constraints | Optional | Default | Description |
---|---|---|---|---|
C | string | No | This is inferred by the supplied content |
Name | Type | Optional | Description |
---|---|---|---|
content | C | No | The content to wrap |