Files
nextcloud-artifacts-action/src/Inputs.ts
Trym Lund Flogard 7ca2f4d4fb more cleanup
2021-06-05 14:21:53 +02:00

19 lines
317 B
TypeScript

import { URL } from 'url'
import { NoFileOption } from './NoFileOption'
export interface Inputs {
readonly ArtifactName: string
readonly ArtifactPath: string
readonly Endpoint: URL
readonly Username: string
readonly Password: string
readonly Token: string
readonly NoFileBehvaior: NoFileOption
}