9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import { PublishOptions } from 'gh-pages';
|
|
|
|
export type GithubInputs = BaseDeploymentOptions & {
|
|
publish?: PublishOptions;
|
|
};
|
|
|
|
type DeploymentResult = {
|
|
appUrl?: string;
|
|
};
|