14 lines
402 B
TypeScript
14 lines
402 B
TypeScript
import { EntityDict } from "../oak-app-domain";
|
|
import { BRC } from "../types/RuntimeCxt";
|
|
export declare function wechatMpJump<ED extends EntityDict>(params: {
|
|
applicationId: string;
|
|
jump_wxa: {
|
|
path?: string;
|
|
query?: string;
|
|
env_version?: string;
|
|
};
|
|
expireType?: number;
|
|
expiresAt?: number;
|
|
expireInterval?: number;
|
|
}, context: BRC<ED>): Promise<any>;
|