fix lints

This commit is contained in:
Johann150 2022-06-24 12:44:22 +02:00
parent 6f8e3fe366
commit a5241379af
No known key found for this signature in database
GPG key ID: 9EE6577A2A06F8F1
5 changed files with 3 additions and 5 deletions

View file

@ -201,7 +201,7 @@ export interface IApMention extends IObject {
href: string;
}
export const isMention = (object: IObject): object is IApMention=>
export const isMention = (object: IObject): object is IApMention =>
getApType(object) === 'Mention' &&
typeof object.href === 'string';