mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2025-03-20 21:04:21 +00:00
12 lines
164 B
TypeScript
12 lines
164 B
TypeScript
|
/**
|
||
|
* Information about an API client
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
export interface APIClient {
|
||
|
id: number,
|
||
|
name: string,
|
||
|
token: string,
|
||
|
domain: string,
|
||
|
}
|