UNPKG

@ticketto/protocol

Version:

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

9 lines (8 loc) 253 B
import { DirectoryCalls } from "./calls.ts"; import { DirectoryStorage } from "./storage.ts"; export type * from "./calls.ts"; export type * from "./storage.ts"; export type DirectoryModule = { calls: DirectoryCalls; query: DirectoryStorage; };