fix(components): [col] component typing issue (#7376)

- Add `push` and `pull` to `ColSizeObject`
This commit is contained in:
JeremyWuuuuu 2022-04-25 23:22:19 +08:00 committed by GitHub
parent 9b399385e0
commit 3f394971dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,8 @@ import type { CSSProperties, ExtractPropTypes } from 'vue'
export type ColSizeObject = {
span?: number
offset?: number
pull?: number
push?: number
}
export type ColSize = number | ColSizeObject