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
/
AnyTypeSchema.d.ts
6 lines
(5 loc)
•
190 B
TypeScript
View Raw
1
2
3
4
5
6
import
BaseSchema
from
'../BaseSchema'
;
/** 除ArrayBuffer以外的所有 将通过JSON.parse来解析 */
export
default
interface
AnyTypeSchema
extends
BaseSchema
{
type
:
'Any'
; }