UNPKG

@versatiledatakit/shared

Version:

Versatile Data Kit Shared library enables reusability of shared features like: NgRx Redux, Error Handlers, Utils, Generic Components, etc.

8 lines (7 loc) 120 B
/** * ** Interface for generic replacer. */ export interface Replacer<T> { searchValue: T; replaceValue: T; }