@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
10 lines (9 loc) • 345 B
TypeScript
/** Сервис для доступа к фиксированной ширине метки. */
export interface ILabelWidthService {
width: number;
alignment: boolean;
}
export declare type $LabelWidth = {
labelWidth: ILabelWidthService;
};
export declare const $LabelWidth: string | ((model?: $LabelWidth) => ILabelWidthService);