UNPKG

onix-core

Version:
15 lines (13 loc) 233 B
export interface IDisposable { /** * Ликвидировать объект. */ dispose(): void; } export interface ITyped { _type: string; } export interface IError { type: string, message?: string }