zmp-vue
Version:
Build full featured iOS & Android apps using ZMP & Vue
19 lines (16 loc) • 390 B
TypeScript
import { ComponentOptionsMixin, DefineComponent } from 'vue';
declare const Text: DefineComponent<
{
size?: 'xxxsmall' | 'xxsmall' | 'xsmall' | 'small' | 'normal' | 'large' | 'xlarge';
bold?: boolean;
fontSize?: string | number;
noSpace?: boolean;
},
() => JSX.Element,
unknown,
{},
{},
ComponentOptionsMixin,
ComponentOptionsMixin
>;
export default Text;