mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
813 B
TypeScript
14 lines
813 B
TypeScript
// Type definitions for react-native-communications 2.2
|
|
// Project: https://github.com/anarchicknight/react-native-communications
|
|
// Definitions by: HuHuanming <https://github.com/huhuanming>
|
|
// Paito <https://github.com/PaitoAnderson>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
export function phonecall(phoneNumber: string, isPrompt: boolean): void;
|
|
export function email(): void;
|
|
export function email(to: string[] | null, cc: string[]| null, bcc: string[] | null, subject: string | null, body: string | null): void;
|
|
export function text(phoneNumber?: string | null, body?: string | null): void;
|
|
export function textWithoutEncoding(phoneNumber?: string | null, body?: string | null): void;
|
|
export function web(address?: string | null): void;
|