mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
396 B
TypeScript
17 lines
396 B
TypeScript
import { phonecall, email, text, textWithoutEncoding, web } from 'react-native-communications';
|
|
|
|
phonecall('123456789', true);
|
|
|
|
email('a@example.com', 'a@example.com', 'a@example.com', 'subject', 'body');
|
|
|
|
text();
|
|
text('123456789');
|
|
text('123456789', 'body');
|
|
|
|
textWithoutEncoding();
|
|
textWithoutEncoding('123456789');
|
|
textWithoutEncoding('123456789', 'body');
|
|
|
|
web();
|
|
web('https://example.com');
|