im-ui-mobile
Version:
A Vue3.0 + Typescript instant messaging component library for Uniapp
20 lines (16 loc) • 422 B
TypeScript
import { AllowedComponentProps, VNodeProps } from '../common'
declare interface LoadingProps {
size?: number
iconColor?: string
mask?: boolean
}
declare interface LoadingSlots {
default?: () => any
}
declare interface _Loading {
new(): {
$props: AllowedComponentProps & VNodeProps & LoadingProps
$slots: LoadingSlots
}
}
export declare const Loading: _Loading