UNPKG

@boristype/types

Version:

<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.

17 lines (13 loc) 300 B
interface Error { message: string; code: number; } interface ErrorConstructor { new(message?: string): Error; (message?: string): Error; } /** * @param {string} str - Строка с текстом ошибки. * @returns String */ declare let Error: ErrorConstructor;