mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-03 02:23:09 +02:00
9 lines
115 B
TypeScript
9 lines
115 B
TypeScript
|
namespace Entity {
|
||
|
export type Mention = {
|
||
|
id: string;
|
||
|
username: string;
|
||
|
url: string;
|
||
|
acct: string;
|
||
|
};
|
||
|
}
|