mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
9 lines
126 B
TypeScript
9 lines
126 B
TypeScript
enum Typeof {
|
|
String = "string",
|
|
Boolean = "boolean",
|
|
Number = "number",
|
|
Object = "object",
|
|
}
|
|
|
|
export default Typeof;
|