From 0992e534de607ff86d759850401f0fdb7d348755 Mon Sep 17 00:00:00 2001 From: Mircea Nistor Date: Wed, 1 Jun 2022 17:44:55 +0200 Subject: [PATCH] chore(docs): use Array instead of T[] to satisfy auto-docs tooling (#910) --- packages/core/src/types/IIdentifier.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/types/IIdentifier.ts b/packages/core/src/types/IIdentifier.ts index 4e6734fb2..e64abb987 100644 --- a/packages/core/src/types/IIdentifier.ts +++ b/packages/core/src/types/IIdentifier.ts @@ -40,8 +40,8 @@ export interface IIdentifier { * Represents the minimum amount of information needed to import an {@link IIdentifier} */ export type MinimalImportableIdentifier = { - keys: MinimalImportableKey[] - services?: IService[] + keys: Array + services?: Array } & Omit /**