lit-element#internalProperty TypeScript Examples
The following examples show how to use
lit-element#internalProperty.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: opc-timeline.ts From op-components with MIT License | 5 votes |
@internalProperty() stepWidth = 0;
Example #2
Source File: editor.ts From linak-desk-card with MIT License | 5 votes |
@internalProperty() private _config!: LinakDeskCardConfig;
Example #3
Source File: editor.ts From linak-desk-card with MIT License | 5 votes |
@internalProperty() private _helpers?: any;
Example #4
Source File: linak-desk-card.ts From linak-desk-card with MIT License | 5 votes |
@internalProperty() private config!: LinakDeskCardConfig;
Example #5
Source File: grid-view.ts From Custom-Grid-View with MIT License | 5 votes |
@internalProperty() private _columns?: number;
Example #6
Source File: grid-view.ts From Custom-Grid-View with MIT License | 5 votes |
@internalProperty() private _layout?: Array<{
width: number;
height: number;
posX: number;
posY: number;
key: string;
}>;
Example #7
Source File: grid-view.ts From Custom-Grid-View with MIT License | 5 votes |
@internalProperty() public _cards: {
[key: string]: LovelaceCard | any;
} = {};