web-component-stencil-test
Version:
Stencil Component Starter
30 lines (29 loc) • 547 B
TypeScript
export declare class GridRow {
/**
*Justify content
*/
justifyContent: string;
validateJustifyContent(newValue: string): void;
/**
* Align Items
*/
alignItems: string;
validateAlignItems(newValue: string): void;
/**
* Is centered
*/
isCentered: boolean;
/**
* Is centered on the x axis
*/
isXCentered: boolean;
/**
* Is centered on the y axis
*/
isYCentered: boolean;
/**
* Is reversed
*/
isReversed: boolean;
render(): any;
}