refactor(components): [collapse] refactor (#6307)

* refactor(components): [collapse] refactor

* refactor(components): [collapse] refactor

* refactor: rename

Co-authored-by: 三咲智子 <sxzz@sxzz.moe>
This commit is contained in:
bqy
2022-03-01 20:44:32 +08:00
committed by GitHub
parent 31bed90a2e
commit e083447b48
11 changed files with 250 additions and 220 deletions

View File

@ -10,3 +10,5 @@ export type HTMLElementCustomized<T> = HTMLElement & T
* @see {@link https://github.com/sindresorhus/meta/discussions/7}
*/
export type Nullable<T> = T | null
export type Arrayable<T> = T | T[]