import { isly } from "isly" export interface Name { first: string last: string } export namespace Name { export const type = isly.object({ first: isly.string(), last: isly.string() }) }