mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
5 lines
62 B
TypeScript
5 lines
62 B
TypeScript
export interface KeyValuePair<K, V> {
|
|
key: K;
|
|
value: V;
|
|
}
|