Skip to content

Commit

Permalink
chore(docs): use Array<T> instead of T[] to satisfy auto-docs tooling (
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis authored Jun 1, 2022
1 parent 7cdeec0 commit 0992e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/types/IIdentifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<MinimalImportableKey>
services?: Array<IService>
} & Omit<IIdentifier, 'keys' | 'services'>

/**
Expand Down

0 comments on commit 0992e53

Please sign in to comment.