feat: add return type to the usePluginLifeCycle function

Signed-off-by: Ryan Wang <i@ryanc.cc>
pull/593/head
Ryan Wang 2022-08-02 22:23:01 +08:00
parent aff568acb8
commit edfa8f6a90
1 changed files with 10 additions and 2 deletions

View File

@ -1,11 +1,19 @@
import type { Ref } from "vue";
import type { ComputedRef, Ref } from "vue";
import { computed } from "vue";
import type { Plugin } from "@halo-dev/api-client";
import cloneDeep from "lodash.clonedeep";
import { apiClient } from "@halo-dev/admin-shared";
import { useDialog } from "@halo-dev/components";
export function usePluginLifeCycle(plugin: Ref<Plugin | null>) {
interface usePluginLifeCycleReturn {
isStarted: ComputedRef<boolean | undefined>;
changeStatus: () => void;
uninstall: () => void;
}
export function usePluginLifeCycle(
plugin: Ref<Plugin | null>
): usePluginLifeCycleReturn {
const dialog = useDialog();
const isStarted = computed(() => {