mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
427 B
TypeScript
13 lines
427 B
TypeScript
// Type definitions for react-native-share-menu 2.2
|
|
// Project: https://github.com/meedan/react-native-share-menu#readme
|
|
// Definitions by: Haseeb Majid <https://github.com/hmajid2301>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface ShareMenu {
|
|
getSharedText(callback: (text: string) => void): void;
|
|
clearSharedText(): void;
|
|
}
|
|
|
|
export const ShareMenu: ShareMenu;
|
|
export default ShareMenu;
|