mirror of
https://github.com/astuto/astuto.git
synced 2026-07-11 04:51:24 +02:00
8 lines
115 B
TypeScript
8 lines
115 B
TypeScript
interface IBoard {
|
|
id: number;
|
|
name: string;
|
|
description?: string;
|
|
slug?: string;
|
|
}
|
|
|
|
export default IBoard; |