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