From eccbb125e9bd194859c6bcc5b7147cefe58ae30a Mon Sep 17 00:00:00 2001 From: Arman Ozak Date: Wed, 2 Dec 2020 12:47:08 +0300 Subject: [PATCH] feat: add generic dictionary to system types --- npm/ng-packs/packages/schematics/src/constants/system-types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/npm/ng-packs/packages/schematics/src/constants/system-types.ts b/npm/ng-packs/packages/schematics/src/constants/system-types.ts index 75497a424a..19a8eee259 100644 --- a/npm/ng-packs/packages/schematics/src/constants/system-types.ts +++ b/npm/ng-packs/packages/schematics/src/constants/system-types.ts @@ -2,6 +2,7 @@ export const SYSTEM_TYPES = new Map([ ['Bool', 'boolean'], ['Byte', 'number'], ['Char', 'string'], + ['Collections.Generic.Dictionary', 'Record'], ['DateTime', 'string'], ['DateTimeOffset', 'string'], ['Decimal', 'number'],