UNPKG

@baqhub/sdk-react

Version:

The official React SDK for the BAQ federated app platform.

10 lines (9 loc) 302 B
export function staticRecordQueryOptionsToRefreshSpec(options) { if (!options.refreshMode || options.refreshMode === "none") { return undefined; } return { mode: options.refreshMode, interval: (options.refreshIntervalSeconds || 30) * 1000, // Default: 30s. }; }