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