2
0
Files
bot/packages/models/src/result.ts

8 lines
238 B
TypeScript
Raw Normal View History

import { Result as ResultFromPrisma } from 'db'
import { VariableWithValue } from '.'
export type Result = Omit<
ResultFromPrisma,
'createdAt' | 'prefilledVariables'
> & { createdAt: string; prefilledVariables: VariableWithValue[] }