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