avada-feature-request
Version:
Feature Request component library for React applications
23 lines (22 loc) • 826 B
TypeScript
export const FREE: "free";
export const STORE_ONBOARD: "STORE_ONBOARD";
export const STORE_REVIEW: "STORE_REVIEW";
export const STORE_OLD: "STORE_OLD";
export const STORE_GROWING: "STORE_GROWING";
export const STORE_POTENTIAL: "STORE_POTENTIAL";
export const STORE_TEST: "STORE_TEST";
export const STORE_NOT_POTENTIAL: "STORE_NOT_POTENTIAL";
export const STORE_PRO: "STORE_PRO";
export function checkTypeShopGH({ countMonthCreateShop, country, shopifyPlan, plan, }: {
countMonthCreateShop?: number | undefined;
country?: string | undefined;
shopifyPlan?: string | undefined;
plan?: string | undefined;
}): string;
export const storeNotPotential: string[];
export function isShopifyTest({ shopifyPlan }: {
shopifyPlan: any;
}): boolean;
export function isAvadaShop({ email }: {
email: any;
}): boolean;