echoes/frontend/contracts/generalContract.ts

13 lines
388 B
TypeScript
Raw Normal View History

// File path: contracts\generalContract.ts
/**
*
*
* - null
* - number
* - string
* - boolean
* -
* -
*/
export type SerializeType = null | number | string | boolean | { [key: string]: SerializeType } | Array<SerializeType>;