mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-19 11:11:05 -05:00
ShuffleOptionType
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user