"git@version.helsinki.fi:hugg/douar-wsmp.git" did not exist on "f920ff0aa6a92895886de5eb1a9e8385e53cb46e"
Newer
Older
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* eslint-disable */
/* tslint:disable */
/**
* This is an autogenerated file created by the Stencil compiler.
* It contains typing information for all components that exist in this project.
*/
import { HTMLStencilElement, JSXBase } from '@stencil/core/internal';
import {
ButtonVariants,
} from './utils/utils';
export namespace Components {
interface HyBaseline {}
interface HyButton {
'icon'?: string;
'iconRight'?: string;
'variant': ButtonVariants;
}
interface HyDocsContainer {}
interface HyIcon {
'fill': string;
'icon': string;
'size': number;
}
interface HyRow {
'align': string;
'justify': string;
}
}
declare global {
interface HTMLHyBaselineElement extends Components.HyBaseline, HTMLStencilElement {}
var HTMLHyBaselineElement: {
prototype: HTMLHyBaselineElement;
new (): HTMLHyBaselineElement;
};
interface HTMLHyButtonElement extends Components.HyButton, HTMLStencilElement {}
var HTMLHyButtonElement: {
prototype: HTMLHyButtonElement;
new (): HTMLHyButtonElement;
};
interface HTMLHyDocsContainerElement extends Components.HyDocsContainer, HTMLStencilElement {}
var HTMLHyDocsContainerElement: {
prototype: HTMLHyDocsContainerElement;
new (): HTMLHyDocsContainerElement;
};
interface HTMLHyIconElement extends Components.HyIcon, HTMLStencilElement {}
var HTMLHyIconElement: {
prototype: HTMLHyIconElement;
new (): HTMLHyIconElement;
};
interface HTMLHyRowElement extends Components.HyRow, HTMLStencilElement {}
var HTMLHyRowElement: {
prototype: HTMLHyRowElement;
new (): HTMLHyRowElement;
};
interface HTMLElementTagNameMap {
'hy-baseline': HTMLHyBaselineElement;
'hy-button': HTMLHyButtonElement;
'hy-docs-container': HTMLHyDocsContainerElement;
'hy-icon': HTMLHyIconElement;
'hy-row': HTMLHyRowElement;
}
}
declare namespace LocalJSX {
interface HyBaseline {}
interface HyButton {
'icon'?: string;
'iconRight'?: string;
'variant'?: ButtonVariants;
}
interface HyDocsContainer {}
interface HyIcon {
'fill'?: string;
'icon'?: string;
'size'?: number;
}
interface HyRow {
'align'?: string;
'justify'?: string;
}
interface IntrinsicElements {
'hy-baseline': HyBaseline;
'hy-button': HyButton;
'hy-docs-container': HyDocsContainer;
'hy-icon': HyIcon;
'hy-row': HyRow;
}
}
export { LocalJSX as JSX };
declare module "@stencil/core" {
export namespace JSX {
interface IntrinsicElements {
'hy-baseline': LocalJSX.HyBaseline & JSXBase.HTMLAttributes<HTMLHyBaselineElement>;
'hy-button': LocalJSX.HyButton & JSXBase.HTMLAttributes<HTMLHyButtonElement>;
'hy-docs-container': LocalJSX.HyDocsContainer & JSXBase.HTMLAttributes<HTMLHyDocsContainerElement>;
'hy-icon': LocalJSX.HyIcon & JSXBase.HTMLAttributes<HTMLHyIconElement>;
'hy-row': LocalJSX.HyRow & JSXBase.HTMLAttributes<HTMLHyRowElement>;
}
}
}