diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-22 05:16:27 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-22 05:16:27 +0900 |
| commit | 3aece449e4a2134381d69754716906353c2dd8bf (patch) | |
| tree | 6effa7785bb5f34b79696f4734d236267cb5f361 /src/server/api/endpoints.ts | |
| parent | #2939 part 3 (#2976) (diff) | |
| download | sharkey-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.ts | 2 |
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; |