Move ObjectMap to shared types

This commit is contained in:
fragosti
2018-09-19 16:48:57 +02:00
parent 14345ab24e
commit a03b1d4d6c
5 changed files with 17 additions and 7 deletions

View File

@@ -1,4 +1,13 @@
[
{
"version": "1.1.0",
"changes": [
{
"note": "Add ObjectMap type",
"pr": 1037
}
]
},
{
"version": "1.0.1",
"changes": [

View File

@@ -239,3 +239,7 @@ export enum StatusCodes {
MethodNotAllowed = 405,
GatewayTimeout = 504,
}
export interface ObjectMap<T> {
[key: string]: T;
}