-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
30db0b4
commit 7726155
Showing
2 changed files
with
24 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,61 @@ | ||
/** | ||
* This is an autogenerated file created by the Stencil compiler. | ||
* It contains typing information for all components that exist in this project. | ||
*/ | ||
/* 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 '@stencil/core'; | ||
|
||
|
||
|
||
|
||
export namespace Components { | ||
|
||
interface SplitMe { | ||
'd': 'horizontal' | 'vertical'; | ||
'fixed': boolean; | ||
'maxSizes': string; | ||
'minSizes': string; | ||
'n': number; | ||
'sizes': string; | ||
'throttle': number; | ||
d: 'horizontal' | 'vertical'; | ||
fixed: boolean; | ||
maxSizes: string; | ||
minSizes: string; | ||
n: number; | ||
sizes: string; | ||
throttle: number; | ||
} | ||
interface SplitMeAttributes extends StencilHTMLAttributes { | ||
'd'?: 'horizontal' | 'vertical'; | ||
'fixed'?: boolean; | ||
'maxSizes'?: string; | ||
'minSizes'?: string; | ||
'n'?: number; | ||
'onSlotResized'?: (event: CustomEvent) => void; | ||
'sizes'?: string; | ||
'throttle'?: number; | ||
d?: 'horizontal' | 'vertical'; | ||
fixed?: boolean; | ||
maxSizes?: string; | ||
minSizes?: string; | ||
n?: number; | ||
onSlotResized?: (event: CustomEvent) => void; | ||
sizes?: string; | ||
throttle?: number; | ||
} | ||
} | ||
|
||
declare global { | ||
interface StencilElementInterfaces { | ||
'SplitMe': Components.SplitMe; | ||
SplitMe: Components.SplitMe; | ||
} | ||
|
||
interface StencilIntrinsicElements { | ||
'split-me': Components.SplitMeAttributes; | ||
} | ||
|
||
|
||
interface HTMLSplitMeElement extends Components.SplitMe, HTMLStencilElement {} | ||
var HTMLSplitMeElement: { | ||
prototype: HTMLSplitMeElement; | ||
new (): HTMLSplitMeElement; | ||
}; | ||
|
||
interface HTMLElementTagNameMap { | ||
'split-me': HTMLSplitMeElement | ||
'split-me': HTMLSplitMeElement; | ||
} | ||
|
||
interface ElementTagNameMap { | ||
'split-me': HTMLSplitMeElement; | ||
} | ||
|
||
|
||
export namespace JSX { | ||
export interface Element {} | ||
export interface IntrinsicElements extends StencilIntrinsicElements { | ||
[tagName: string]: any; | ||
} | ||
} | ||
export interface HTMLAttributes extends StencilHTMLAttributes {} | ||
|
||
} |