com-easystep2-datawedge-plugin-intent-capacitor
Version:
Capacitor plugin for Android Intents
12 lines • 682 B
JavaScript
// Constants that match the Android implementation
export const ACTION_SEND = 'android.intent.action.SEND';
export const ACTION_VIEW = 'android.intent.action.VIEW';
export const EXTRA_TEXT = 'android.intent.extra.TEXT';
export const EXTRA_SUBJECT = 'android.intent.extra.SUBJECT';
export const EXTRA_STREAM = 'android.intent.extra.STREAM';
export const EXTRA_EMAIL = 'android.intent.extra.EMAIL';
export const ACTION_CALL = 'android.intent.action.CALL';
export const ACTION_SENDTO = 'android.intent.action.SENDTO';
export const ACTION_GET_CONTENT = 'android.intent.action.GET_CONTENT';
export const ACTION_PICK = 'android.intent.action.PICK';
//# sourceMappingURL=definitions.js.map