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
/
dist
/
IInspectable.d.ts
10 lines
(9 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="node" />
import
{
InspectOptions
}
from
'util'
;
export
declare
const
inspect
: unique
symbol
;
/** * Implement a custom inspect method */
export
interface
IInspectable
{ [inspect](
options
?:
InspectOptions
):
string
|
object
; }