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 { /** * ユーザー名がすべてのバリデーションルールを通過したかどうかを示します。 */ isValid: boolean; /** * 失敗した個々のルールを表す {@link UsernameValidationError} オブジェクトの配列です(存在する場合)。 * * {@link UsernameValidationResult.isValid} が `true` の場合、この配列は空になります。 */ errors: UsernameValidationError[]; }
true