UNPKG

@redox-contrib/models

Version:

Typescript definitions for the Redox API.

15 lines (14 loc) 383 B
import type { Meta, Note, Patient } from '../common'; import type { NotesOrder } from './NotesOrder'; import type { NotesVisit } from './NotesVisit'; export interface DeleteMeta extends Meta { DataModel: 'Notes'; EventType: 'Delete'; } export interface Delete { Meta: DeleteMeta; Note: Note; Patient: Patient; Orders?: NotesOrder[]; Visit?: NotesVisit; }