Files
2026-01-05 12:47:14 +08:00

13 lines
313 B
TypeScript

import type { ExtractPropTypes, PropType } from 'vue'
import { commonProps } from '../_utils'
export const safeareaProps = {
...commonProps,
/**
* @description 安全区的位置
*/
position: String as PropType<'top' | 'bottom'>,
}
export type SafeAreaProps = ExtractPropTypes<typeof safeareaProps>