blob: 159cc44f57616ffe0b5588590cdca7791e2e721f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export interface ModifyGuildStickerSchema {
/**
* @minLength 2
* @maxLength 30
*/
name: string;
/**
* @maxLength 100
*/
description?: string;
/**
* @maxLength 200
*/
tags: string;
}
|