UNPKG

@authelion/vue

Version:

This package contains auth related vue components.

21 lines (20 loc) 915 B
import Vue from 'vue'; import { BvMsgBoxOptions } from 'bootstrap-vue'; declare enum ElementType { BUTTON = "button", LINK = "link", DROP_DOWN_ITEM = "dropDownItem" } export type AuthEntityDeleteProperties = { [key: string]: any; elementIcon: string; withText: boolean; elementType: `${ElementType}`; entityId: string; entityType: string; hint?: string; locale?: string; options?: BvMsgBoxOptions; }; export declare const AuthEntityDelete: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, any, any, any, AuthEntityDeleteProperties, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>; export default AuthEntityDelete;