@questlabs/core
Version:
This is the quest SDK
9 lines (8 loc) • 450 B
TypeScript
import QuestSdk from "../..";
import { IGetTextCampaign, IGetTextCampaignResponse } from "../../types/campaign.types";
import { IGetRequestOptions } from "../../types/common.types";
export declare class Campaign {
questSdk: QuestSdk;
constructor(questSdk: QuestSdk);
getTextCampaign({ campaignId, userId, entityId, isQuestUser, defaultText, timeout }: IGetTextCampaign, options?: IGetRequestOptions): Promise<IGetTextCampaignResponse>;
}