import { Expect } from './assert' import { Type, Static } from '@alkdev/typebox' { const T = Type.String({ $id: 'T' }) const R = Type.Ref('T') type T = Static type R = Static Expect(T).ToStatic() Expect(R).ToStatic() }