27 lines
972 B
TypeScript
27 lines
972 B
TypeScript
import { EntityDict } from '../oak-app-domain';
|
|
import { BRC } from '../types/RuntimeCxt';
|
|
export declare function createTag<ED extends EntityDict>(params: {
|
|
applicationId: string;
|
|
name: string;
|
|
}, context: BRC<ED>): Promise<any>;
|
|
export declare function getTags<ED extends EntityDict>(params: {
|
|
applicationId: string;
|
|
}, context: BRC<ED>): Promise<any>;
|
|
export declare function editTag<ED extends EntityDict>(params: {
|
|
applicationId: string;
|
|
id: number;
|
|
name: string;
|
|
}, context: BRC<ED>): Promise<any>;
|
|
export declare function deleteTag<ED extends EntityDict>(params: {
|
|
applicationId: string;
|
|
id: string;
|
|
wechatId: number;
|
|
}, context: BRC<ED>): Promise<any>;
|
|
export declare function syncTag<ED extends EntityDict>(params: {
|
|
applicationId: string;
|
|
id: string;
|
|
}, context: BRC<ED>): Promise<any>;
|
|
export declare function oneKeySync<ED extends EntityDict>(params: {
|
|
applicationId: string;
|
|
}, context: BRC<ED>): Promise<any>;
|