Skip to content

Commit

Permalink
fix: Use omit instead of exclude (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gray-Wind committed Nov 16, 2022
1 parent 8450296 commit 137e014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Components/Executors/exports/DockerExecutor.ts
Expand Up @@ -26,7 +26,7 @@ export class DockerExecutor extends Executor {
constructor(
image: string,
resource_class: DockerResourceClass = 'medium',
properties?: Exclude<DockerImageShape, 'image'>,
properties?: Omit<DockerImageShape, 'image'>,
serviceImages?: DockerImage[],
) {
super(resource_class);
Expand Down

0 comments on commit 137e014

Please sign in to comment.