mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-01-09 10:43:09 +02:00
7 lines
78 B
TypeScript
7 lines
78 B
TypeScript
|
namespace Entity {
|
||
|
export type List = {
|
||
|
id: string;
|
||
|
title: string;
|
||
|
};
|
||
|
}
|