use same name

This commit is contained in:
einhornimmond 2025-06-23 14:06:21 +02:00
parent 3afecc0c18
commit 7b4db18c52

View File

@ -1,10 +1,10 @@
import { AbstractLoggingView } from 'database'
import { Decay } from '@/graphql/model/Decay'
import type { Decay as DecayType } from 'shared'
import type { Decay as DecayInterface } from 'shared'
export class DecayLoggingView extends AbstractLoggingView {
public constructor(private self: Decay | DecayType) {
public constructor(private self: Decay | DecayInterface) {
super()
}