| /expo/packages/expo-image-manipulator/build/ |
| H A D | validators.d.ts | 1 import { Action, SaveOptions } from './ImageManipulator.types'; 2 export declare function validateArguments(uri: string, actions: Action[], saveOptions: SaveOptions)… 4 export declare function validateActions(actions: Action[]): void;
|
| H A D | ImageManipulator.d.ts | 1 import { Action, ImageResult, SaveOptions } from './ImageManipulator.types'; 13 export declare function manipulateAsync(uri: string, actions?: Action[], saveOptions?: SaveOptions)…
|
| H A D | ExpoImageManipulator.web.d.ts | 1 import { ImageResult, SaveOptions, Action } from './ImageManipulator.types'; 4 …manipulateAsync(uri: string, actions: Action[] | undefined, options: SaveOptions): Promise<ImageRe…
|
| H A D | ImageManipulator.types.d.ts | 61 export type Action = ActionResize | ActionRotate | ActionFlip | ActionCrop; alias
|
| /expo/packages/expo-image-manipulator/android/src/main/java/expo/modules/imagemanipulator/arguments/ |
| H A D | Actions.kt | 4 import expo.modules.imagemanipulator.actions.Action 10 class Actions(val actions: List<Action>) { 13 val actions: MutableList<Action> = mutableListOf() in fromArgument()
|
| /expo/home/redux/ |
| H A D | Store.types.ts | 1 import { Action } from 'redux'; 19 Action<string>
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/imagemanipulator/arguments/ |
| H A D | Actions.kt | 4 import abi49_0_0.expo.modules.imagemanipulator.actions.Action 10 class Actions(val actions: List<Action>) { 13 val actions: MutableList<Action> = mutableListOf() in fromArgument()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/imagemanipulator/arguments/ |
| H A D | Actions.kt | 4 import abi48_0_0.expo.modules.imagemanipulator.actions.Action 10 class Actions(val actions: List<Action>) { 13 val actions: MutableList<Action> = mutableListOf() in fromArgument()
|
| /expo/packages/expo-image-manipulator/src/ |
| H A D | ImageManipulator.ts | 4 import { Action, ImageResult, SaveFormat, SaveOptions } from './ImageManipulator.types'; 21 actions: Action[] = [],
|
| H A D | validators.ts | 2 Action, 12 export function validateArguments(uri: string, actions: Action[], saveOptions: SaveOptions) { 24 export function validateActions(actions: Action[]): void {
|
| H A D | ExpoImageManipulator.web.ts | 1 import { ImageResult, SaveOptions, Action } from './ImageManipulator.types'; 51 actions: Action[] = [],
|
| H A D | ImageManipulator.types.ts | 74 export type Action = ActionResize | ActionRotate | ActionFlip | ActionCrop; alias
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/imagemanipulator/arguments/ |
| H A D | Actions.kt | 3 import abi47_0_0.expo.modules.imagemanipulator.actions.Action 15 class Actions(public val actions: List<Action>) { 18 val actions: MutableList<Action> = mutableListOf() in fromArgument()
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/presentation/builders/ |
| H A D | CategoryAwareNotificationBuilder.java | 67 protected NotificationCompat.Action buildButtonAction(@NonNull NotificationAction action) { in buildButtonAction() 69 … return new NotificationCompat.Action.Builder(super.getIcon(), action.getTitle(), intent).build(); in buildButtonAction() 72 …protected NotificationCompat.Action buildTextInputAction(@NonNull TextInputNotificationAction acti… in buildTextInputAction() 78 …return new NotificationCompat.Action.Builder(super.getIcon(), action.getTitle(), intent).addRemote… in buildTextInputAction()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/presentation/builders/ |
| H A D | CategoryAwareNotificationBuilder.java | 67 protected NotificationCompat.Action buildButtonAction(@NonNull NotificationAction action) { in buildButtonAction() 69 … return new NotificationCompat.Action.Builder(super.getIcon(), action.getTitle(), intent).build(); in buildButtonAction() 72 …protected NotificationCompat.Action buildTextInputAction(@NonNull TextInputNotificationAction acti… in buildTextInputAction() 78 …return new NotificationCompat.Action.Builder(super.getIcon(), action.getTitle(), intent).addRemote… in buildTextInputAction()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/presentation/builders/ |
| H A D | CategoryAwareNotificationBuilder.java | 67 protected NotificationCompat.Action buildButtonAction(@NonNull NotificationAction action) { in buildButtonAction() 69 … return new NotificationCompat.Action.Builder(super.getIcon(), action.getTitle(), intent).build(); in buildButtonAction() 72 …protected NotificationCompat.Action buildTextInputAction(@NonNull TextInputNotificationAction acti… in buildTextInputAction() 78 …return new NotificationCompat.Action.Builder(super.getIcon(), action.getTitle(), intent).addRemote… in buildTextInputAction()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/presentation/builders/ |
| H A D | CategoryAwareNotificationBuilder.java | 67 protected NotificationCompat.Action buildButtonAction(@NonNull NotificationAction action) { in buildButtonAction() 69 … return new NotificationCompat.Action.Builder(super.getIcon(), action.getTitle(), intent).build(); in buildButtonAction() 72 …protected NotificationCompat.Action buildTextInputAction(@NonNull TextInputNotificationAction acti… in buildTextInputAction() 78 …return new NotificationCompat.Action.Builder(super.getIcon(), action.getTitle(), intent).addRemote… in buildTextInputAction()
|
| /expo/packages/expo-image-manipulator/android/src/main/java/expo/modules/imagemanipulator/actions/ |
| H A D | Action.kt | 5 interface Action { interface
|
| H A D | RotateAction.kt | 6 class RotateAction(private val rotation: Int) : Action {
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/imagemanipulator/actions/ |
| H A D | Action.kt | 5 interface Action { interface
|
| H A D | RotateAction.kt | 6 class RotateAction(private val rotation: Int) : Action {
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/imagemanipulator/actions/ |
| H A D | Action.kt | 5 interface Action { interface
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/imagemanipulator/actions/ |
| H A D | Action.kt | 5 interface Action { interface
|
| H A D | RotateAction.kt | 6 class RotateAction(private val rotation: Int) : Action {
|
| /expo/packages/expo-dev-menu-interface/ios/MenuItems/ |
| H A D | DevMenuItem.swift | 9 case Action = 1
|