From 72289da72cd23c74f473c7b183f6776f273e6b5d Mon Sep 17 00:00:00 2001 From: Sean Tan <86497360+seant-splunk@users.noreply.github.com> Date: Mon, 13 Sep 2021 14:48:38 -0700 Subject: [PATCH] Update types.ts Signed-off-by: Sean Tan --- plugins/catalog-graphql/src/graphql/types.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/catalog-graphql/src/graphql/types.ts b/plugins/catalog-graphql/src/graphql/types.ts index 71e40181d4..5c53a6d1e3 100644 --- a/plugins/catalog-graphql/src/graphql/types.ts +++ b/plugins/catalog-graphql/src/graphql/types.ts @@ -27,8 +27,7 @@ export type Exact = { export type Omit = Pick>; export type RequireFields = { [X in Exclude]?: T[X]; -} & - { [P in K]-?: NonNullable }; +} & { [P in K]-?: NonNullable }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: string;