From 0e5b0ca685b2fd58232ef9613fb03dd65692fe76 Mon Sep 17 00:00:00 2001 From: LBLZR_ Date: Thu, 27 Feb 2020 20:11:51 +0100 Subject: [PATCH] [react-onsenui] Added AlertDialogButton (#42663) https://onsen.io/v2/api/react/AlertDialogButton.html --- types/react-onsenui/index.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/types/react-onsenui/index.d.ts b/types/react-onsenui/index.d.ts index 498050467d..00ee3610de 100644 --- a/types/react-onsenui/index.d.ts +++ b/types/react-onsenui/index.d.ts @@ -5,6 +5,7 @@ // Jemmyw // Mikael Lirbank // Yuji Tabata +// LBLZR_ // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 @@ -187,6 +188,12 @@ export class AlertDialog extends Component<{ onPostHide?(): void, }, any> {} +export class AlertDialogButton extends Component<{ + onClick?(): void, + modifier?: string, + disabled?: boolean, +}, any> {} + export class Dialog extends Component<{ onCancel?(): void, isOpen?: boolean,