示例
import { ApisType, createApi } from '@zhlix/vue-development-tools/dist/api'
import * as ApiList from './apis'
export default createApi(ApiList)
declare module '@vue/runtime-core' {
interface IApi extends ApisType<typeof ApiList> {}
export interface ComponentCustomProperties {
$apis: IApi
}
}