-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathionic-declarations.d.ts
More file actions
23 lines (21 loc) · 862 Bytes
/
ionic-declarations.d.ts
File metadata and controls
23 lines (21 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2019 Gonzalo Müller Bravo.
// Licensed under the MIT License (MIT), see LICENSE.txt
import { any } from "prop-types";
import * as React from 'react';
declare global {
namespace JSX {
interface IntrinsicElements {
'ion-anchor': React.DetailedHTMLProps<any, any>
'ion-button': React.DetailedHTMLProps<any, any>
'ion-card': React.DetailedHTMLProps<any, any>
'ion-card-content': React.DetailedHTMLProps<any, any>
'ion-card-header': React.DetailedHTMLProps<any, any>
'ion-card-title': React.DetailedHTMLProps<any, any>
'ion-card-subtitle': React.DetailedHTMLProps<any, any>
'ion-img': React.DetailedHTMLProps<any, any>;
'ion-input': React.DetailedHTMLProps<any, any>;
'ion-item': React.DetailedHTMLProps<any, any>;
'ion-text': React.DetailedHTMLProps<any, any>
}
}
}