mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
import { registerEnumType } from 'type-graphql'
|
|
import { PendingTransactionState } from 'shared'
|
|
|
|
export { PendingTransactionState }
|
|
|
|
registerEnumType(PendingTransactionState, {
|
|
name: 'PendingTransactionState', // this one is mandatory
|
|
description: 'State of the PendingTransaction', // this one is optional
|
|
})
|