import { EntityToDto } from 'src/types/dto';
import {
  CommunityDbEntity,
  ConfigDbEntity,
  LinkDbEntity,
  ParticleDbEntity,
  PinDbEntity,
  SyncQueueDbEntity,
  SyncQueueKey,
  SyncStatusDbEntity,
  TransactionDbEntity,
} from './entities';

export type PinDto = EntityToDto<PinDbEntity>;
export type SyncStatusDto = EntityToDto<SyncStatusDbEntity>;
export type TransactionDto = EntityToDto<TransactionDbEntity>;
export type ParticleDto = EntityToDto<ParticleDbEntity>;
export type ConfigDto = EntityToDto<ConfigDbEntity>;
export type LinkDto = EntityToDto<LinkDbEntity>;
export type SyncQueueDto = EntityToDto<SyncQueueDbEntity>;
export type SyncQueueKeyDto = EntityToDto<SyncQueueKey>;

export type CommunityDto = EntityToDto<CommunityDbEntity>;

Synonyms

pussy-ts/src/types/dto.ts
cyb/src/utils/dto.ts
cyb/src/types/dto.ts
pussy-ts/src/utils/dto.ts
pussy-ts/src/services/CozoDb/types/dto.ts

Neighbours