7 lines
97 B
TypeScript
7 lines
97 B
TypeScript
export interface VanityUrlSchema {
|
|
/**
|
|
* @minLength 1
|
|
* @maxLength 20
|
|
*/
|
|
code?: string;
|
|
} |