Layer.d.ts 539 B

1234567891011121314151617181920
  1. import { FC } from "react";
  2. /**
  3. * @see https://krpano.com/docu/xml/#layer.html
  4. */
  5. export interface LayerProps {
  6. name: string;
  7. keep?: boolean;
  8. type?: "image" | "text" | "container";
  9. align?: "lefttop" | "left" | "leftbottom" | "top" | "center" | "bottom" | "righttop" | "right";
  10. x?: number;
  11. y?: number;
  12. html?: string;
  13. visible?: boolean;
  14. background?: boolean;
  15. border?: boolean;
  16. enabled?: boolean;
  17. css?: string;
  18. }
  19. export declare const Layer: FC<LayerProps>;
  20. //# sourceMappingURL=Layer.d.ts.map