@skyux/core
Version:
This library was generated with [Nx](https://nx.dev).
18 lines (17 loc) • 449 B
TypeScript
/**
* The location on the page where the dock component should be rendered.
*/
export declare enum SkyDockLocation {
/**
* Renders the dock component before a given element.
*/
BeforeElement = 0,
/**
* Renders the dock component as the last element inside the BODY element.
*/
BodyBottom = 1,
/**
* Renders the dock component as the last element inside a given element.
*/
ElementBottom = 2
}