Typescript-json-schema does not crawl extends
This commit is contained in:
parent
ac2062e49d
commit
14aa1e7913
@ -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…
x
Reference in New Issue
Block a user