@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
18 lines • 672 B
TypeScript
/** @packageDocumentation
* @module PresentationRules
*/
/**
* This specification allows defining a custom renderer, which can be used to render properties or categories.
*
* @see [Renderer specification reference documentation page]($docs/presentation/content/RendererSpecification.md)
* @public
*/
export interface CustomRendererSpecification {
/**
* Name of the renderer that's going to be used in UI components. Value of this attribute corresponds
* to [[RendererDescription.name]] attribute that gets assigned to whatever the renderer
* is set on.
*/
rendererName: string;
}
//# sourceMappingURL=CustomRendererSpecification.d.ts.map