mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-03 21:53:09 +02:00
8 lines
111 B
TypeScript
8 lines
111 B
TypeScript
|
namespace Entity {
|
||
|
export type Field = {
|
||
|
name: string;
|
||
|
value: string;
|
||
|
verified_at: string | null;
|
||
|
};
|
||
|
}
|