import type {KeysWithExactType} from '../../type/keys-with-exact-type.js'; import type {ValueTransformer} from './value-transformer.js'; export interface ValueTransformerDecorator { ( prototype: T, key: KeysWithExactType | KeysWithExactType, ): void; (prototype: null, key: null): ValueTransformer; }