UNPKG

@ticketto/protocol

Version:

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

10 lines (9 loc) 282 B
import type { EventsCalls } from "./calls.ts"; import type { EventsStorage } from "./storage.ts"; export type * from "./calls.ts"; export type * from "./events.ts"; export type * from "./storage.ts"; export type EventsModule = { calls: EventsCalls; query: EventsStorage; };