e.x. ```ts type A<T, S> = T & S; ``` into: ```ts type A<TOptions, TAdditionalOptions> = TOptions & TAdditionalOptions; ```