framework7-vue
Version:
Build full featured iOS & Android apps using Framework7 & Vue
56 lines (42 loc) • 888 B
TypeScript
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
declare const MessagebarAttachment: DefineComponent<
{
image: {
type: StringConstructor;
},
deletable: {
type: BooleanConstructor;
default: boolean;
},
color: {
type: StringConstructor;
},
colorTheme: {
type: StringConstructor;
},
textColor: {
type: StringConstructor;
},
bgColor: {
type: StringConstructor;
},
borderColor: {
type: StringConstructor;
},
rippleColor: {
type: StringConstructor;
},
dark: {
type: BooleanConstructor;
}
},
() => JSX.Element,
unknown,
{},
{},
ComponentOptionsMixin,
ComponentOptionsMixin,
("attachment:click" | "attachment:delete")[],
"attachment:click" | "attachment:delete"
>;
export default MessagebarAttachment;