mobilizon.chapril.org-mobil.../js/src/types/feedtoken.model.ts

9 lines
189 B
TypeScript
Raw Normal View History

import type { IPerson } from "./actor";
import type { ICurrentUser } from "./current-user.model";
export interface IFeedToken {
token: string;
actor?: IPerson;
user: ICurrentUser;
}