Home
last modified time | relevance | path

Searched refs:SessionType (Results 1 – 6 of 6) sorted by relevance

/expo/home/redux/
H A DSessionReducer.ts7 export type SessionType = Record<SessionObject> & Readonly<SessionObject>; alias
20 export default (state: SessionType = new SessionState(), action: SessionActions): SessionType => {
H A DStore.types.ts5 import { SessionType } from './SessionReducer';
11 session: SessionType;
/expo/packages/expo-file-system/android/src/main/java/expo/modules/filesystem/
H A DFileSystemRecords.kt33 enum class SessionType(val value: Int) : Enumerable { class
63 val sessionType: SessionType = SessionType.BACKGROUND
77 val sessionType: SessionType = SessionType.BACKGROUND,
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/filesystem/
H A DFileSystemRecords.kt33 enum class SessionType(val value: Int) : Enumerable { class
63 val sessionType: SessionType = SessionType.BACKGROUND
77 val sessionType: SessionType = SessionType.BACKGROUND,
/expo/packages/expo-file-system/ios/
H A DFileSystemRecords.swift45 @Field var sessionType: SessionType = .background
51 @Field var sessionType: SessionType = .background
60 enum SessionType: Int, Enumerable {
H A DNetworkingHelpers.swift15 func createUrlSession(type: SessionType, delegate: URLSessionDelegate) -> URLSession { in createUrlSession()