1import IPoint from '@secret-agent/interfaces/IPoint'; 2 3export type Serializable = number | string | boolean | null | Serializable[] | IJSONObject | IPoint; 4export interface IJSONObject { 5 [key: string]: Serializable; 6} 7 8