@polls-platform/core
Version:
Polls Platform core library
11 lines (10 loc) • 422 B
TypeScript
import { OpenPollFlow, PollState } from '../types';
export interface ConstructPollUrlProps {
pollId: string;
flow: OpenPollFlow;
pollState?: PollState;
themeName?: string;
themeObject?: any;
storeId?: string;
}
export declare function constructPollUrl({ pollId, flow, pollState, themeName: passedThemeName, themeObject: passedThemeObject, storeId: passedStoreId, }: ConstructPollUrlProps): string;