TextData.d.ts 311 B

123456789101112
  1. import { STextAlign, STextBaseLine, STextDirection } from "@persagy-web/draw/lib";
  2. export interface TextData {
  3. Id?: string;
  4. Text: string;
  5. X: number;
  6. Y: number;
  7. Width?: number;
  8. TextAlign?: STextAlign;
  9. BaseLine?: STextBaseLine;
  10. TextDirection?: STextDirection;
  11. Size?: number;
  12. }