import { CommandClause } from "@psdk/frame-father"; import { BasicCPCLArg } from "./basic"; import { CCodeRotation, CCodeType } from "../types"; export declare class CBar extends BasicCPCLArg { private x; private y; private content; private lineWidth; private height; private codeRotation; private codeType; constructor(options?: { /** * 一维码起始横坐标 */ x?: number; /** * 一维码起始纵坐标 */ y?: number; /** * 条码内容 */ content?: string; /** * 条码线宽度 */ lineWidth?: number; /** * 条码高度 */ height?: number; /** * 条码类型 */ codeType?: CCodeType; /** * 旋转 */ codeRotation?: CCodeRotation; }); clause(): CommandClause; header(): string; } //# sourceMappingURL=bar.d.ts.map