@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
22 lines • 832 B
TypeScript
/** @packageDocumentation
* @module Content
*/
/**
* Displayed content types. Affects how the content is formatted, e.g.
* the [[ContentFlags]].
*
* @public
*/
export declare enum DefaultContentDisplayTypes {
/** Unknown content type. */
Undefined = "Undefined",// eslint-disable-line id-denylist
/** Grid or table view content type. By default adds [[ContentFlags.ShowLabels]] flag. */
Grid = "Grid",
/** Property pane content type. By default adds [[ContentFlags.MergeResults]] flag. */
PropertyPane = "PropertyPane",
/** List content type. By default adds [[ContentFlags.NoFields]] and [[ContentFlags.ShowLabels]] flags */
List = "List",
/** Viewport content type. By default adds [[ContentFlags.KeysOnly]] flag. */
Viewport = "Graphics"
}
//# sourceMappingURL=DisplayTypes.d.ts.map