You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
482 B

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