Publish
This commit is contained in:
24
test/static/array.ts
Normal file
24
test/static/array.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { Expect } from './assert'
|
||||
import { Type } from '@sinclair/typebox'
|
||||
|
||||
Expect(Type.Array(Type.String())).ToStatic<string[]>()
|
||||
|
||||
Expect(
|
||||
Type.Array(
|
||||
Type.Object({
|
||||
x: Type.Number(),
|
||||
y: Type.Boolean(),
|
||||
z: Type.String(),
|
||||
}),
|
||||
),
|
||||
).ToStatic<
|
||||
{
|
||||
x: number
|
||||
y: boolean
|
||||
z: string
|
||||
}[]
|
||||
>()
|
||||
|
||||
Expect(Type.Array(Type.Array(Type.String()))).ToStatic<string[][]>()
|
||||
|
||||
Expect(Type.Array(Type.Tuple([Type.String(), Type.Number()]))).ToStatic<[string, number][]>()
|
||||
Reference in New Issue
Block a user