8 lines
115 B
TypeScript
8 lines
115 B
TypeScript
namespace Entity {
|
|
export type Mention = {
|
|
id: string;
|
|
username: string;
|
|
url: string;
|
|
acct: string;
|
|
};
|
|
}
|