7 lines
93 B
TypeScript
7 lines
93 B
TypeScript
|
|
export type MapsetType = {
|
||
|
|
id: number;
|
||
|
|
name: string;
|
||
|
|
slug: string;
|
||
|
|
notes: string;
|
||
|
|
};
|