diff --git a/src/index.ts b/src/index.ts index 0244e61..72461fd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,7 +10,7 @@ export type ObjectDict = Record; export type JSONPrimitive = string | number | boolean | null; export type JSONValue = JSONPrimitive | JSONObject | JSONArray; export type JSONObject = { [member: string]: JSONValue }; -export type JSONArray = JSONValue[]; +export type JSONArray = readonly JSONValue[]; export const TYPE_ANY = InputArgument.TYPE_ANY; export const TYPE_ARRAY = InputArgument.TYPE_ARRAY;