@vue-stripe/vue-stripe
Version:
Vue Stripe elements and composables for Stripe.js
32 lines • 1.22 kB
TypeScript
import { VueStripePricingTableProps } from '../types';
import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue-demi';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
loading?(_: {}): any;
error?(_: {
error: string;
}): any;
};
refs: {};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<VueStripePricingTableProps, {
loading: Ref<boolean, boolean>;
error: Ref<string | null, string | null>;
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
load: () => any;
error: (error: Error) => any;
}, string, PublicProps, Readonly<VueStripePricingTableProps> & Readonly<{
onLoad?: () => any;
onError?: (error: Error) => any;
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};
//# sourceMappingURL=VueStripePricingTable.vue.d.ts.map