soft3/js/src/types.ts

import { logs } from "@cosmjs/stargate";

export interface CyberlinkResult {
  readonly logs: readonly logs.Log[];
  readonly transactionHash: string;
}

export interface InvestmintResult {
  readonly logs: readonly logs.Log[];
  readonly transactionHash: string;
}

export interface CreateRouteResult {
  readonly logs: readonly logs.Log[];
  readonly transactionHash: string;
}

export interface EditRouteResult {
  readonly logs: readonly logs.Log[];
  readonly transactionHash: string;
}

export interface DeleteRouteResult {
  readonly logs: readonly logs.Log[];
  readonly transactionHash: string;
}

export interface EditRouteNameResult {
  readonly logs: readonly logs.Log[];
  readonly transactionHash: string;
}

export interface Link {
  from: string;
  to: string;
}

export interface CyberSearchTxFilter {
  readonly minHeight?: number;
  readonly maxHeight?: number;
}

export interface CyberSearchTxQuery {
  sentFromOrTo?: string;
  height?: number;
  tags?: ReadonlyArray<{ readonly key: string; readonly value: string }>;
}

Homonyms

cyberia/research/events/ethereum/test/cyber-valley-event-manager/types.ts
soft3/js/src/codec/cyber/rank/v1beta1/types.ts
soft3/js/src/codec/cyber/grid/v1beta1/types.ts
soft3/js/src/codec/cyber/graph/v1beta1/types.ts
soft3/js/src/codec/cyber/bandwidth/v1beta1/types.ts
soft3/js/src/codec/cyber/resources/v1beta1/types.ts
cyberia/research/events/client/src/entities/event/model/types.ts
cyberia/research/events/client/src/features/event-form/model/types.ts
cyberia/research/events/client/src/entities/order/model/types.ts
cyberia/research/events/client/src/entities/user/model/types.ts
cyberia/research/events/client/src/features/ticket/model/types.ts
cyberia/research/events/client/src/features/place-form/model/types.ts
cyberia/research/events/client/src/entities/place/model/types.ts
cyberia/research/events/client/src/entities/geodata/model/types.ts
cyberia/research/events/client/src/shared/ui/expandable/types.ts
cyberia/research/events/client/src/entities/notification/model/types.ts

Graph