data.ts 143 B

1234567
  1. import { A2tbType } from '@/types'
  2. export type A2EditInfoType = {
  3. id: number
  4. txt: '新增' | '编辑' | '查看' | ''
  5. info?: A2tbType
  6. }