export interface Context { [x: string]: ContextValue; } export type ContextValue = string | number | boolean | Context | ContextArray | undefined | null; /** * @hidden */ export interface ContextArray extends Array { }