UNPKG
ts-std-lib
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
A standard library for typescript
github.com/SeanSobey/ts-std-lib
SeanSobey/ts-std-lib
ts-std-lib
/
src
/
IInspector.ts
9 lines
(7 loc)
•
189 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import { InspectOptions }
from
'util'
;
/** * For inspecting objects during debugging */
export
interface
IInspector
<
T
> { inspect(
object
: T, options?: InspectOptions):
string
; }