mirror of
https://github.com/XFox111/MuiCharts.git
synced 2026-04-22 06:51:05 +03:00
9c05f4333b
- Updated README.md
10 lines
106 B
TypeScript
10 lines
106 B
TypeScript
/** Represents the type of surface. */
|
|
enum Surface
|
|
{
|
|
SAND,
|
|
ASPHALT,
|
|
GROUND
|
|
}
|
|
|
|
export default Surface;
|