da42522073
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import type { IPerson } from "./actor";
|
|
import type { ICurrentUser } from "./current-user.model";
|
|
|
|
export interface IFeedToken {
|
|
token: string;
|
|
actor?: IPerson;
|
|
user: ICurrentUser;
|
|
}
|