UNPKG

jinaga

Version:

Data management for web and mobile applications.

25 lines 573 B
import { FactRecord, FactReference } from '../storage'; export interface ProfileMessage { displayName: string; } export interface LoginResponse { userFact: FactRecord; profile: ProfileMessage; } export interface SaveMessage { facts: FactRecord[]; } export interface LoadMessage { references: FactReference[]; } export interface LoadResponse { facts: FactRecord[]; } export interface FeedsResponse { feeds: string[]; } export interface FeedResponse { references: FactReference[]; bookmark: string; } //# sourceMappingURL=messages.d.ts.map