Files
gitops/ts_interfaces/data/connection.ts
2026-02-24 12:29:58 +00:00

12 lines
258 B
TypeScript

export type TProviderType = 'gitea' | 'gitlab';
export interface IProviderConnection {
id: string;
name: string;
providerType: TProviderType;
baseUrl: string;
token: string;
createdAt: number;
status: 'connected' | 'disconnected' | 'error';
}