export type SourceTargetMap = { [Key in keyof Target]: | null | undefined | keyof Source | ((source: Source) => unknown); };