-
-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { actionInterface } from "./constants"; | ||
export declare function init(action: actionInterface): Promise<void | Error>; | ||
export declare function switchToBaseBranch(action: actionInterface): Promise<void>; | ||
export declare function generateBranch(action: actionInterface): Promise<void>; | ||
export declare function deploy(action: actionInterface): Promise<void>; | ||
import { ActionInterface } from './constants'; | ||
export declare function init(action: ActionInterface): Promise<void | Error>; | ||
export declare function switchToBaseBranch(action: ActionInterface): Promise<void>; | ||
export declare function generateBranch(action: ActionInterface): Promise<void>; | ||
export declare function deploy(action: ActionInterface): Promise<void>; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { actionInterface } from "./constants"; | ||
import { deploy, generateBranch, init } from "./git"; | ||
import { ActionInterface } from './constants'; | ||
import { deploy, generateBranch, init } from './git'; | ||
/** Initializes and runs the action. */ | ||
export default function run(configuration: actionInterface): Promise<void>; | ||
export { init, deploy, generateBranch, actionInterface }; | ||
export default function run(configuration: ActionInterface): Promise<void>; | ||
export { init, deploy, generateBranch, ActionInterface }; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { actionInterface } from "./constants"; | ||
import { ActionInterface } from './constants'; | ||
export declare const isNullOrUndefined: (value: any) => boolean; | ||
export declare const generateTokenType: (action: actionInterface) => string; | ||
export declare const generateRepositoryPath: (action: actionInterface) => string; | ||
export declare const hasRequiredParameters: (action: actionInterface) => void; | ||
export declare const suppressSensitiveInformation: (str: string, action: actionInterface) => string; | ||
export declare const generateTokenType: (action: ActionInterface) => string; | ||
export declare const generateRepositoryPath: (action: ActionInterface) => string; | ||
export declare const hasRequiredParameters: (action: ActionInterface) => void; | ||
export declare const suppressSensitiveInformation: (str: string, action: ActionInterface) => string; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.