initial
This commit is contained in:
11
ts_interfaces/data/connection.ts
Normal file
11
ts_interfaces/data/connection.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export type TProviderType = 'gitea' | 'gitlab';
|
||||
|
||||
export interface IProviderConnection {
|
||||
id: string;
|
||||
name: string;
|
||||
providerType: TProviderType;
|
||||
baseUrl: string;
|
||||
token: string;
|
||||
createdAt: number;
|
||||
status: 'connected' | 'disconnected' | 'error';
|
||||
}
|
||||
Reference in New Issue
Block a user