UNPKG
@bitjson/typedoc
Version:
latest (0.15.0-0)
0.15.0-0
Create api documentation for TypeScript projects.
typedoc.org
TypeStrong/TypeDoc
@bitjson/typedoc
/
dist
/
lib
/
models
/
types
/
intrinsic.d.ts
11 lines
(10 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Type
}
from
'./abstract'
;
export
declare
class
IntrinsicType
extends
Type
{
name
:
string
;
readonly
type
:
string
;
constructor
(
name
:
string
);
clone
():
Type
;
equals
(
type
:
IntrinsicType
):
boolean
;
toObject
():
any
;
toString
():
string
; }