framework7-vue
Version:
Build full featured iOS & Android apps using Framework7 & Vue
75 lines (56 loc) • 1.06 kB
TypeScript
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
declare const SwipeoutButton: DefineComponent<
{
text: {
type: StringConstructor;
},
confirmTitle: {
type: StringConstructor;
},
confirmText: {
type: StringConstructor;
},
overswipe: {
type: BooleanConstructor;
},
close: {
type: BooleanConstructor;
},
delete: {
type: BooleanConstructor;
},
href: {
type: StringConstructor;
},
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,
("click")[],
"click"
>;
export default SwipeoutButton;