ShuffleOptionType

This commit is contained in:
SaiSawant1
2024-10-04 02:29:52 +05:30
parent 16170a73a6
commit d97e90a515

View File

@@ -6,22 +6,16 @@ import {
} from "@formbricks/types/surveys/types";
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "../Select";
type ShuffleOptionType = {
id: string;
label: string;
show: boolean;
};
type ShuffleOptionsTypes = {
none?: {
id: string;
label: string;
show: boolean;
};
all?: {
id: string;
label: string;
show: boolean;
};
exceptLast?: {
id: string;
label: string;
show: boolean;
};
none?: ShuffleOptionType;
all?: ShuffleOptionType;
exceptLast?: ShuffleOptionType;
};
interface ShuffleOptionSelectInterface {