Add ?Fbt to flow type for the title & message props

Differential Revision: D6253195

fbshipit-source-id: eadb185eacdf341393d73357beab22bed1d0169e
This commit is contained in:
Jessica Cao 2017-11-06 16:09:52 -08:00 committed by Facebook Github Bot
parent 515eb0e801
commit 2be3ae1ff2
2 changed files with 12 additions and 9 deletions

View File

@ -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 {

View File

@ -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,