This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
next-deploy/packages/github/types.d.ts

9 lines
177 B
TypeScript

import { PublishOptions } from 'gh-pages';
export type GithubInputs = BaseDeploymentOptions & {
publish?: PublishOptions;
};
type DeploymentResult = {
appUrl?: string;
};