fix lints

This commit is contained in:
Johann150
2022-06-24 12:44:22 +02:00
parent 6f8e3fe366
commit a5241379af
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';