mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
interface IBoardJSON {
|
|
id: number;
|
|
name: string;
|
|
description?: string;
|
|
slug?: string;
|
|
}
|
|
|
|
export default IBoardJSON; |