Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
export interface UsernameValidationResult { /** * Indicates whether the username passed all validation rules. */ isValid: boolean; /** * 失敗した個々のルールを表す {@link UsernameValidationError} オブジェクトの配列(存在する場合)。 * * {@link UsernameValidationResult.isValid} が `true` の場合、この配列は空です。 */ errors: UsernameValidationError[]; }
true