backport
Version:
A CLI tool that automates the process of backporting commits
11 lines (10 loc) • 568 B
TypeScript
/**
* Central re-exports of key domain types.
* Definitions stay in their source modules; this barrel provides a single import location.
*/
export type { Commit } from '../lib/sourceCommit/parse-source-commit.js';
export type { CommitAuthor } from '../lib/author.js';
export type { Result, SuccessResult, ErrorResult, } from '../lib/run-sequentially.js';
export type { BackportResponse } from '../lib/run-sequentially.js';
export type { ValidConfigOptions } from '../options/option-schema.js';
export type { ConfigFileOptions } from '../options/config-options.js';