1
2
3
4
5
6
7
8
9
10
11
12
13
14
| import {MsgMethods, RemoteMethods} from "gs-br-ext";
| import {IBidTask, IBidTaskResult} from "./IResp";
|
| interface ITabTaskBase {
|
| executeBidTask(task: IBidTask): Promise<IBidTaskResult['results'] | undefined>;
|
| }
|
| export interface ITabTaskApi extends ITabTaskBase, RemoteMethods {
| }
|
| export interface ITabTaskService extends ITabTaskBase, MsgMethods {
| }
|
|