UNPKG

fastlion-amis

Version:

一种MIS页面生成工具

17 lines (16 loc) 621 B
import { RendererEnv } from '../../../env'; import { fetcherConfig } from '../../../factory'; interface IRequest { protocol: string; bodyParams: any; url: string; group?: string; } export interface IExpress { before: IRequest[]; after: fetcherConfig; } declare type Translate = (str: any, data?: object | undefined) => any; export declare function expressLabels(expressList: IExpress, fetcher: RendererEnv['fetcher'], translate: Translate, preview?: boolean): Promise<void>; export declare function cainiaoGetPrinters(wsUrl: string, translate: Translate): Promise<any>; export {};