blob: e12d6a71371ed5308f8e3a215635f9aa57525f6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
export declare enum ClientPrefix {
/**
* A constant representing the URI path for release 0 of the Client-Server HTTP API.
*/
R0 = "/_matrix/client/r0",
/**
* A constant representing the URI path for the legacy release v1 of the Client-Server HTTP API.
*/
V1 = "/_matrix/client/v1",
/**
* A constant representing the URI path for Client-Server API endpoints versioned at v3.
*/
V3 = "/_matrix/client/v3",
/**
* A constant representing the URI path for as-yet unspecified Client-Server HTTP APIs.
*/
Unstable = "/_matrix/client/unstable"
}
export declare enum IdentityPrefix {
/**
* URI path for the v2 identity API
*/
V2 = "/_matrix/identity/v2"
}
export declare enum MediaPrefix {
/**
* URI path for the media repo API
*/
R0 = "/_matrix/media/r0"
}
//# sourceMappingURL=prefix.d.ts.map
|