UNPKG

@ticketto/protocol

Version:

Library that defines the interfaces of the ticketto protocol to be implemented on a client

10 lines (9 loc) 287 B
import type { TicketsCalls } from "./calls.ts"; import type { TicketsStorage } from "./storage.ts"; export type * from "./calls.ts"; export type * from "./events.ts"; export type * from "./storage.ts"; export type TicketsModule = { calls: TicketsCalls; query: TicketsStorage; };