@feedmepos/mf-common 1.1.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
package/dist/App.vue.d.ts CHANGED
@@ -1,2 +1,9 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
2
+ apps?(_: {}): any;
3
+ }>;
2
4
  export default _default;
5
+ type __VLS_WithTemplateSlots<T, S> = T & {
6
+ new (): {
7
+ $slots: S;
8
+ };
9
+ };
@@ -1,6 +1,8 @@
1
1
  import { FdoBusiness, FdoPermissionRule, FdoRestaurant } from '@feedmepos/core/entity';
2
+ import { type AxiosInstance } from 'axios';
2
3
  export declare function readUserAdminPermission(): Promise<FdoPermissionRule[]>;
3
4
  export declare function readUserBusinessPermission(businessId: string): Promise<FdoPermissionRule[]>;
4
5
  export declare function readManagableBusinesses(): Promise<FdoBusiness[]>;
5
6
  export declare function readBusinessRestaurants(businessId: string): Promise<FdoRestaurant[]>;
6
7
  export declare function readBusinessRestaurant(restaurantId: string): Promise<FdoRestaurant>;
8
+ export declare const baseClientInstance: (url: string) => AxiosInstance;