import * as sd from "schema-decorator"; import * as o from "../../../../dist/src/main"; export const table = o.table( "table", { x : sd.naturalNumber(), y : sd.string(), z : sd.boolean(), } ); export const emptyTable = o.table( "table", {} ); export const nullable = o.table( "table", { a : sd.nullable(sd.naturalNumber()), } );