removed redundant partial

This commit is contained in:
Andreas Schaafsma 2024-05-14 12:52:47 +02:00
parent f6eef1ded3
commit a7f24f6229

View File

@ -51,7 +51,7 @@ export class User extends Model<InferAttributes<User>, InferCreationAttributes<U
/** Defined by {@link Auth.user} */
declare authtokens?:NonAttribute<Auth[]>
/** Defined by {@link UserPerms.user} */
declare perms?:CreationOptional<Partial<CreationAttributes<UserPerms>>>
declare perms?:CreationOptional<CreationAttributes<UserPerms>>
/** Defined by {@link Post.user} */
declare posts?:CreationOptional<Post[]>