UNPKG

edge-sync-client

Version:

Library for accessing the Edge data-sync system

15 lines (14 loc) 542 B
export interface EdgeServers { infoServers?: string[]; syncServers?: string[]; } export declare const asEdgeServers: import("cleaners").ObjectCleaner<EdgeServers>; export declare const asNonEmptyString: (raw: any) => string; export declare const asPath: (raw: any) => string; export declare const asSyncKey: (raw: any) => string; export declare type EdgeBox = ReturnType<typeof asEdgeBox>; export declare const asEdgeBox: import("cleaners").ObjectCleaner<{ iv_hex: string; encryptionType: number; data_base64: string; }>;