6 lines
245 B
TypeScript
6 lines
245 B
TypeScript
import { Either } from '@standardnotes/common'
|
|
import { SessionRefreshedData } from './SessionRefreshedData'
|
|
import { MetaReceivedData } from './MetaReceivedData'
|
|
|
|
export type ApiServiceEventData = Either<MetaReceivedData, SessionRefreshedData>
|