Text.d.ts 461 B

123456789
  1. import { Group, Text as GText, type DisplayObjectConfig, type TextStyleProps as GTextStyleProps } from '@antv/g';
  2. import { OmitConflictStyleProps } from './types';
  3. export type TextStyleProps = OmitConflictStyleProps<GTextStyleProps>;
  4. export declare class Text extends GText {
  5. private _offscreen;
  6. protected get offscreenGroup(): Group;
  7. disconnectedCallback(): void;
  8. constructor({ style, ...restOptions }?: DisplayObjectConfig<TextStyleProps>);
  9. }