7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
|
export interface IConnectResponse
|
||
|
{
|
||
|
backendUrl: string,
|
||
|
name: string,
|
||
|
editions: string[],
|
||
|
profileDescriptions: Record<string, string>
|
||
|
}
|