UNPKG

@manuth/interceptor

Version:

Provides a convenient way to intercept method- property- and accessor-calls of an object.

24 lines (23 loc) 501 B
/** * Provides the functionality to resolve a property. * * @template T * The type of the target of the interception. * * @template TKey * The key of the intercepted member. */ export type PropertyGetter<T, TKey extends keyof T> = /** * Resolves the property with the specified {@linkcode key}. * * @param target * The target this interception belongs to. * * @param key * The key of the property to get. * * @returns * The manipulated value. */ (target: T, key: TKey) => T[TKey];