UNPKG
tstype-schema
Version:
latest (1.1.0)
1.1.0
1.0.0
TSType schema declarations
github.com/k8w/tstype
k8w/tstype-schema
tstype-schema
/
src
/
schemas
/
NumberTypeSchema.d.ts
7 lines
(6 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
BaseSchema
from
'../BaseSchema'
;
export
default
interface
NumberTypeSchema
extends
BaseSchema
{
type
:
'Number'
;
/** 默认为float64 */
scalarType
?:
'int8'
|
'int16'
|
'int32'
|
'int64'
|
'uint8'
|
'uint16'
|
'uint32'
|
'uint64'
|
'float32'
|
'float64'
; }