Skip to content

Commit

Permalink
fix: export docker image types (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaryt committed Nov 17, 2022
1 parent 137e014 commit 79e0b77
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/lib/Components/Executors/types/DockerExecutor.types.ts
@@ -1,5 +1,10 @@
import { StringParameter } from '../../Parameters/types';
import { DockerImageShape } from '../exports/DockerImage';
import {
DockerImageShape,
DockerImage,
DockerAuth,
DockerAuthAWS,
} from '../exports/DockerImage';
import { AnyResourceClassBase } from './Executor.types';
/**
* A JSON representation of the Docker Executor Schema
Expand All @@ -16,3 +21,5 @@ export type DockerImageMap = {
* @see {@link https://circleci.com/docs/2.0/configuration-reference/#docker-executor} for specifications of each class.
*/
export type DockerResourceClass = AnyResourceClassBase;

export { DockerImageShape, DockerImage, DockerAuth, DockerAuthAWS };

0 comments on commit 79e0b77

Please sign in to comment.