2021-12-22 14:59:07 +01:00
|
|
|
import { Result as ResultFromPrisma } from 'db'
|
2022-02-17 16:08:01 +01:00
|
|
|
import { VariableWithValue } from '.'
|
2021-12-22 14:59:07 +01:00
|
|
|
|
2022-02-17 16:08:01 +01:00
|
|
|
export type Result = Omit<
|
|
|
|
ResultFromPrisma,
|
|
|
|
'createdAt' | 'prefilledVariables'
|
|
|
|
> & { createdAt: string; prefilledVariables: VariableWithValue[] }
|