mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2024-11-26 15:29:22 +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,
|
|
} |