-
Notifications
You must be signed in to change notification settings - Fork 0
/
etools-dialog.d.ts
50 lines (43 loc) · 1.46 KB
/
etools-dialog.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* DO NOT EDIT
*
* This file was automatically generated by
* https://github.com/Polymer/tools/tree/master/packages/gen-typescript-declarations
*
* To modify these typings, edit the source file(s):
* etools-dialog.js
*/
// tslint:disable:variable-name Describing an API that's defined elsewhere.
// tslint:disable:no-any describes the API as best we are able today
import {DialogSpinnerMixin} from './dialog-spinner-mixin.js';
import {LitElement} from 'lit-element';
declare class EtoolsDialog extends DialogSpinnerMixin(LitElement) {
dialogTitle: string|null|undefined;
okBtnText: string|null|undefined;
cancelBtnText: string|null|undefined;
size: string|null|undefined;
opened: boolean|null|undefined;
backdrop: boolean|null|undefined;
modal: boolean|null|undefined;
noPadding: boolean|null|undefined;
disableConfirmBtn: boolean|null|undefined;
disableDismissBtn: boolean|null|undefined;
hideConfirmBtn: boolean|null|undefined;
theme: string|null|undefined;
noAutoFocus: boolean|null|undefined;
_dialogCloseHandling(event: any): void;
_dialogOpenedHandling(): void;
_onDomChange(): void;
getDialogClass(size: any, theme: any): any;
getScrollableDialogClass(noPadding: any): any;
_noContentPaddingChanged(noPaddingValue: any): void;
getPaperDialog(): any;
notifyResize(): void;
scrollDown(): void;
}
export default EtoolsDialog;
declare global {
interface HTMLElementTagNameMap {
"etools-dialog": EtoolsDialog;
}
}