mirror of
https://github.com/status-im/react-native.git
synced 2025-01-27 09:45:04 +00:00
Add ?Fbt to flow type for the title & message props
Differential Revision: D6253195 fbshipit-source-id: eadb185eacdf341393d73357beab22bed1d0169e
This commit is contained in:
parent
515eb0e801
commit
2be3ae1ff2
@ -16,6 +16,7 @@ const NativeModules = require('NativeModules');
|
||||
const Platform = require('Platform');
|
||||
|
||||
import type { AlertType, AlertButtonStyle } from 'AlertIOS';
|
||||
import type { Fbt } from 'fbt';
|
||||
|
||||
export type Buttons = Array<{
|
||||
text?: string,
|
||||
@ -79,8 +80,8 @@ type Options = {
|
||||
class Alert {
|
||||
|
||||
static alert(
|
||||
title: ?string,
|
||||
message?: ?string,
|
||||
title: ?string | ?Fbt,
|
||||
message?: ?string | ?Fbt,
|
||||
buttons?: Buttons,
|
||||
options?: Options,
|
||||
type?: AlertType,
|
||||
@ -104,8 +105,8 @@ class Alert {
|
||||
class AlertAndroid {
|
||||
|
||||
static alert(
|
||||
title: ?string,
|
||||
message?: ?string,
|
||||
title: ?string | ?Fbt,
|
||||
message?: ?string | ?Fbt,
|
||||
buttons?: Buttons,
|
||||
options?: Options,
|
||||
): void {
|
||||
|
@ -12,7 +12,9 @@
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var RCTAlertManager = require('NativeModules').AlertManager;
|
||||
const RCTAlertManager = require('NativeModules').AlertManager;
|
||||
|
||||
import type { Fbt } from 'fbt';
|
||||
|
||||
/**
|
||||
* An Alert button type
|
||||
@ -133,8 +135,8 @@ class AlertIOS {
|
||||
* );
|
||||
*/
|
||||
static alert(
|
||||
title: ?string,
|
||||
message?: ?string,
|
||||
title: ?string | ?Fbt,
|
||||
message?: ?string | ?Fbt,
|
||||
callbackOrButtons?: ?(() => void) | ButtonsArray,
|
||||
type?: AlertType,
|
||||
): void {
|
||||
@ -192,8 +194,8 @@ class AlertIOS {
|
||||
* );
|
||||
*/
|
||||
static prompt(
|
||||
title: ?string,
|
||||
message?: ?string,
|
||||
title: ?string | ?Fbt,
|
||||
message?: ?string | ?Fbt,
|
||||
callbackOrButtons?: ?((text: string) => void) | ButtonsArray,
|
||||
type?: ?AlertType = 'plain-text',
|
||||
defaultValue?: string,
|
||||
|
Loading…
x
Reference in New Issue
Block a user