加载笔记内容...
1export type NonEmptyArray<T> = [T, ...T[]];
1export type NonNullableElement<T> = T extends (infer U)[] ? NonNullable<U>[] : T;