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
/
abstract.d.ts
10 lines
(9 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
abstract
class
Type
{
readonly
type:
string
;
abstract
clone
(): Type;
equals
(
type
: Type):
boolean
;
toObject
(): any;
toString
():
string
;
static
isTypeListSimilar
(
a
: Type[],
b
: Type[]):
boolean
;
static
isTypeListEqual
(
a
: Type[],
b
: Type[]):
boolean
; }