Added additional type for DeserializerOptions keyForAttribute option (#36070)

This commit is contained in:
Jack Holmes 2019-06-28 09:56:42 +12:00 committed by Benjamin Lichtman
parent 2ab7a80737
commit f11abd2433

View File

@ -54,7 +54,8 @@ export interface DeserializerOptions {
| "underscore_case"
| "snake_case"
| "camelCase"
| "CamelCase";
| "CamelCase"
| KeyForAttribute;
pluralizeType?: boolean;
typeAsAttribute?: boolean;
transform?: Transform;