We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f90a46 commit df8168cCopy full SHA for df8168c
packages/gnome-shell/src/ui/dialog.d.ts
@@ -32,12 +32,17 @@ export class Dialog extends St.Widget {
32
protected _setInitialKeyFocus(actor: St.Widget): void;
33
}
34
35
+export interface MessageDialogContentProps extends St.BoxLayout.ConstructorProperties{
36
+ title?: string;
37
+ description?: string;
38
+}
39
+
40
export class MessageDialogContent extends St.BoxLayout {
41
public title: string;
42
public description: string;
43
- constructor(params: St.BoxLayout.ConstructorProperties);
- public _init(params: St.BoxLayout.ConstructorProperties): void;
44
+ constructor(params: MessageDialogContentProps);
45
+ public _init(params: MessageDialogContentProps): void;
46
47
protected _onDestroy(): void;
48
protected _updateTitleStyle(): void;
0 commit comments