Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/core/interfaces/ISerializable.ts
1029 views
1
import IPoint from '@secret-agent/interfaces/IPoint';
2
3
export type Serializable = number | string | boolean | null | Serializable[] | IJSONObject | IPoint;
4
export interface IJSONObject {
5
[key: string]: Serializable;
6
}
7
8