mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-13 06:02:39 +01:00
Typescript-json-schema does not crawl extends
This commit is contained in:
parent
4fbebe17d3
commit
02222361f1
@ -16,7 +16,14 @@ const router: Router = Router();
|
|||||||
|
|
||||||
// TODO: Only permissions your bot has in the guild or channel can be allowed/denied (unless your bot has a MANAGE_ROLES overwrite in the channel)
|
// TODO: Only permissions your bot has in the guild or channel can be allowed/denied (unless your bot has a MANAGE_ROLES overwrite in the channel)
|
||||||
|
|
||||||
export interface ChannelPermissionOverwriteSchema extends ChannelPermissionOverwrite {}
|
// export interface ChannelPermissionOverwriteSchema extends ChannelPermissionOverwrite {}
|
||||||
|
// TODO: typescript-json-schema does not like extending types
|
||||||
|
export interface ChannelPermissionOverwriteSchema {
|
||||||
|
allow: string;
|
||||||
|
deny: string;
|
||||||
|
id: string;
|
||||||
|
type: ChannelPermissionOverwriteType;
|
||||||
|
}
|
||||||
|
|
||||||
router.put(
|
router.put(
|
||||||
"/:overwrite_id",
|
"/:overwrite_id",
|
||||||
|
Loading…
Reference in New Issue
Block a user