UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

9 lines (6 loc) 251 B
import type { Static } from "alepha"; import { identities } from "../entities/identities.ts"; export const identityResourceSchema = identities.schema.omit({ password: true, }); export type IdentityResource = Static<typeof identityResourceSchema>;