实现一个高级工具类型 DropString<T, S> 用于从字符串中删除指定的字符。
DropString<T, S>
例如:
type Butterfly = DropString<'foobar!', 'fb'> // expected to be 'ooar!'
TypeScript