export type TypeTimeout = ReturnType; export type TypeInterval = ReturnType; export interface TypePlainObject { [key: string]: unknown; } export declare type TypeSimpleValue = null | undefined | string | number | boolean; export interface TypeSimpleObject { [key: string]: TypeSimpleValue; } export type TypeDate = Date | string | number;