mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
import {
|
|
Contribution,
|
|
creationFactory as creationFactoryDb,
|
|
CreationInterface,
|
|
nMonthsBefore
|
|
} from 'database'
|
|
|
|
export { CreationInterface, nMonthsBefore }
|
|
|
|
export const creationFactory = async (
|
|
_client: any,
|
|
creation: CreationInterface,
|
|
): Promise<Contribution> => {
|
|
return creationFactoryDb(creation)
|
|
}
|