2024-03-18 16:09:19 +01:00
|
|
|
export type Variable = {
|
|
|
|
id: string
|
|
|
|
name: string
|
|
|
|
value?: string | (string | null)[] | null | undefined
|
2024-05-15 14:24:55 +02:00
|
|
|
isSessionVariable?: boolean
|
2024-03-18 16:09:19 +01:00
|
|
|
}
|
|
|
|
|
2024-05-15 14:24:55 +02:00
|
|
|
export type VariableWithValue = Omit<Variable, 'value'> & {
|
2024-03-18 16:09:19 +01:00
|
|
|
value: string | (string | null)[]
|
|
|
|
}
|
|
|
|
|
2024-05-15 14:24:55 +02:00
|
|
|
export type VariableWithUnknowValue = Omit<Variable, 'value'> & {
|
2024-03-18 16:09:19 +01:00
|
|
|
value?: unknown
|
|
|
|
}
|