12 lines
258 B
TypeScript
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';
|
|
}
|