6 lines
78 B
TypeScript
6 lines
78 B
TypeScript
namespace Entity {
|
|
export type List = {
|
|
id: string;
|
|
title: string;
|
|
};
|
|
}
|