@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
16 lines (12 loc) • 350 B
text/typescript
import { IArtifactAccount } from 'core/account';
import { IArtifact } from './IArtifact';
import { IPipeline } from './IPipeline';
export interface IArtifactEditorProps {
account: IArtifactAccount;
artifact: IArtifact;
onChange: (a: IArtifact) => void;
pipeline?: IPipeline;
}
export interface IArtifactEditorState {
[k: string]: any;
}