Skip to content

Commit

Permalink
refactor(types): adjust cache method signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
oscard0m committed Sep 24, 2024
1 parent 9589bc9 commit 7d4e8a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ export type InstallationAccessTokenData = {
expiresAt: UTC_TIMESTAMP;
permissions: Permissions;
repositorySelection: REPOSITORY_SELECTION;
repositoryIds?: number[];
repositoryNames?: string[];
repositoryIds: number[] | undefined;
repositoryNames: string[] | undefined;
singleFileName?: string;
};

Expand Down

0 comments on commit 7d4e8a9

Please sign in to comment.