igniteui-react-core
Version:
Ignite UI React Core.
19 lines (18 loc) • 330 B
TypeScript
import { Type } from "./type";
/**
* Specifies the display state of an element.
*/
export declare enum Visibility {
/**
* Display the element.
*/
Visible = 0,
/**
* Do not display the element.
*/
Collapsed = 1
}
/**
* @hidden
*/
export declare let Visibility_$type: Type;