Files
gitea/ts/index.ts
Juergen Kunz 4bfe5e56bc feat(core): initial implementation of @apiclient.xyz/gitea TypeScript client
Provides GiteaClient class with methods for repos, orgs, secrets, and action runs.
2026-02-24 12:50:02 +00:00

13 lines
316 B
TypeScript

export { GiteaClient } from './gitea.classes.giteaclient.js';
export type {
IGiteaUser,
IGiteaRepository,
IGiteaOrganization,
IGiteaSecret,
IGiteaActionRun,
IGiteaActionRunJob,
ITestConnectionResult,
IListOptions,
} from './gitea.interfaces.js';
export { commitinfo } from './00_commitinfo_data.js';