import type { Ref } from "vue"; export type LoaderLoadType = 'loading' | 'finished' | 'nomore' | 'error'; export interface ILoaderCommon
{ loadError: Ref; loadStatus: Ref; loadData: (params?: P, refresh?: boolean) => Promise; }