UNPKG
ngx-tabset
Version:
latest (2.2.0)
2.2.0
2.1.0
2.0.1
2.0.0
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
A very simple library to let you create some tabs
github.com/biig-io/ngx-tabset
biig-io/ngx-tabset
ngx-tabset
/
src
/
components
/
tab.d.ts
11 lines
(10 loc)
•
259 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
TemplateRef
}
from
'@angular/core'
;
export
declare
class
TabComponent
{
tabTitle
:
string
;
tabSubTitle
:
string
;
active
:
boolean
;
disabled
:
boolean
;
bypassDOM
:
boolean
;
customPaneClass
:
string
;
template
:
TemplateRef
<
any
>; }