mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-20 23:08:34 +00:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
|
import { CONFIG, PollOfflineStatus } from './types';
|
||
|
|
||
|
export type TPollOfflineStatus = typeof pollOfflineStatus;
|
||
|
export function pollOfflineStatus(): PollOfflineStatus {
|
||
|
return {
|
||
|
type: CONFIG.POLL_OFFLINE_STATUS
|
||
|
};
|
||
|
}
|