Expand SQL query parameter type (#346)

This commit is contained in:
Steve Faulkner 2019-06-20 11:20:36 -07:00 коммит произвёл GitHub
Родитель 5418e5b05b
Коммит d9f8ea7df2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -27,5 +27,11 @@ export interface SqlParameter {
/** Name of the parameter. (i.e. "@lastName") */
name: string;
/** Value of the parameter (this is safe to come from users, assuming they are authorized) */
value: string | number | boolean;
value: JSONValue;
}
export type JSONValue = boolean | number | string | null | JSONArray | JSONObject;
export interface JSONObject {
[key: string]: JSONValue;
}
export interface JSONArray extends Array<JSONValue> {}