| 1234567891011121314151617181920 |
- import { FC } from "react";
- /**
- * @see https://krpano.com/docu/xml/#layer.html
- */
- export interface LayerProps {
- name: string;
- keep?: boolean;
- type?: "image" | "text" | "container";
- align?: "lefttop" | "left" | "leftbottom" | "top" | "center" | "bottom" | "righttop" | "right";
- x?: number;
- y?: number;
- html?: string;
- visible?: boolean;
- background?: boolean;
- border?: boolean;
- enabled?: boolean;
- css?: string;
- }
- export declare const Layer: FC<LayerProps>;
- //# sourceMappingURL=Layer.d.ts.map
|