mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-06 06:19:58 +08:00
Fix optional properties of CreateTapePrintParamsXmlParams
This commit is contained in:
10
dymo-label-framework/dymo-label-framework.d.ts
vendored
10
dymo-label-framework/dymo-label-framework.d.ts
vendored
@@ -171,15 +171,15 @@ declare module dymo.label.framework {
|
||||
|
||||
interface CreateTapePrintParamsXmlParams {
|
||||
/** The number of copies to print. */
|
||||
copies: number;
|
||||
copies?: number;
|
||||
/** The print job title/description. */
|
||||
jobTitle: string;
|
||||
jobTitle?: string;
|
||||
/** The direction of the label content on the label (left-to-right or right-to-left). Use the dymo.label.framework.FlowDirection enumeration to specify the value. */
|
||||
flowDirection: FlowDirection;
|
||||
flowDirection?: FlowDirection;
|
||||
/** The label alignment on the tape. Use the dymo.label.framework.TapeAlignment enumeration to specify the value. */
|
||||
alignment: TapeAlignment;
|
||||
alignment?: TapeAlignment;
|
||||
/** The cut mode (if auto-cut is supported by the printer). Use the dymo.label.framework.TapeCutMode enumeration to specify the value. */
|
||||
cutMode: TapeCutMode;
|
||||
cutMode?: TapeCutMode;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user