crush

Results 8 issues of crush

vscode version: 1.38.1 vscode-lombok version: 0.9.9 ![image](https://user-images.githubusercontent.com/34732107/65680300-40929380-e089-11e9-8036-e0128fe16bbc.png)

```ts // 你的答案 type Flatten = T extends [infer C, ...infer Rest] ? C extends unknown[] ? Flatten : [C, ...Flatten] : R; ```

answer
zh-CN
459

```ts // 你的答案 type ReplaceAll = From extends '' ? S : S extends `${infer L}${From}${infer R}` ? `${L}${To}${ReplaceAll}` : S ```

answer
zh-CN
119

```ts // 你的答案 type Chainable = { option(key: K extends keyof T ? never : K, value: V): Chainable get(): T } ```

answer
zh-CN
12

```ts // 你的答案 type MyOmit = { [Key in keyof T as Key extends K ? never : Key]: T[Key] }; type MyReadonly = { readonly [Key in keyof T]:...

answer
zh-CN
8

```ts // 你的答案 type MyReturnType = T extends (...arg: any) => infer R ? R : never; ```

answer
2
zh-CN

### TanStack Table version v8.19.3 ### Framework/Library version React V18.3.1; @tanstack/react-virtual V3.8.3; @dnd-kit/core v6.1.0 ### Describe the bug and the steps to reproduce it 1. Slightly scroll the table body...

提问前先看看: ### 🧐 问题描述 基于@umijs/max创建的项目,在使用page container时,明明已经有header了,但还是出现了`ant-pro-page-container-children-container-no-header`类 如下: ![image](https://github.com/ant-design/pro-components/assets/34732107/0e56eccf-1507-461b-8e5a-33f4bea63fd5) ### 💻 示例代码 ```tsx {messageContextHolder} ``` ### 🚑 其他信息 我是给予umijs/max创建的项目,配置如下: ```ts // .umirc.ts export default defineConfig({ hash: true, define: { API_URL: process.env.API_URL,...