summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-10-22 05:16:27 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-10-22 05:16:27 +0900
commit3aece449e4a2134381d69754716906353c2dd8bf (patch)
tree6effa7785bb5f34b79696f4734d236267cb5f361 /src/server/api/endpoints.ts
parent#2939 part 3 (#2976) (diff)
downloadsharkey-3aece449e4a2134381d69754716906353c2dd8bf.tar.gz
sharkey-3aece449e4a2134381d69754716906353c2dd8bf.tar.bz2
sharkey-3aece449e4a2134381d69754716906353c2dd8bf.zip
Improve API definitions
Diffstat (limited to 'src/server/api/endpoints.ts')
-rw-r--r--src/server/api/endpoints.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/api/endpoints.ts b/src/server/api/endpoints.ts
index 2b00094269..6e5ca90c63 100644
--- a/src/server/api/endpoints.ts
+++ b/src/server/api/endpoints.ts
@@ -2,6 +2,8 @@ import * as path from 'path';
import * as glob from 'glob';
export interface IEndpointMeta {
+ stability?: 'deprecated' | 'experimental' | 'stable';
+
desc?: any;
params?: any;