UNPKG

@ticketto/protocol

Version:

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

10 lines (9 loc) 297 B
import { AttendancesCalls } from "./calls.ts"; import { AttendancesStorage } from "./storage.ts"; export type * from "./calls.ts"; export type * from "./events.ts"; export type * from "./storage.ts"; export type AttendancesModule = { calls: AttendancesCalls; query: AttendancesStorage; };