Skip to content

Commit

Permalink
🏷️ [plain] rect type
Browse files Browse the repository at this point in the history
  • Loading branch information
vbuch committed Nov 7, 2023
1 parent 2bf2e70 commit 0976a12
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion packages/placeholder-plain/dist/plainAddPlaceholder.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ export type InputType = {
location: string;
signatureLength?: number;
/**
* One of SUBFILTER_* from
* One of SUBFILTER_* from \@signpdf/utils
*/
subFilter?: string;
/**
* [x1, y1, x2, y2] widget rectangle
*/
widgetRect?: number[];
};
//# sourceMappingURL=plainAddPlaceholder.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/placeholder-plain/dist/plainAddPlaceholder.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const getAcroFormRef = slice => {
* @property {string} name
* @property {string} location
* @property {number} [signatureLength]
* @property {string} [subFilter] One of SUBFILTER_* from @signpdf/utils
* @property {string} [widgetRect] [x1, y1, x2, y2] widget rectangle
* @property {string} [subFilter] One of SUBFILTER_* from \@signpdf/utils
* @property {number[]} [widgetRect] [x1, y1, x2, y2] widget rectangle
*/

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/placeholder-plain/src/plainAddPlaceholder.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const getAcroFormRef = (slice) => {
* @property {string} name
* @property {string} location
* @property {number} [signatureLength]
* @property {string} [subFilter] One of SUBFILTER_* from @signpdf/utils
* @property {string} [widgetRect] [x1, y1, x2, y2] widget rectangle
* @property {string} [subFilter] One of SUBFILTER_* from \@signpdf/utils
* @property {number[]} [widgetRect] [x1, y1, x2, y2] widget rectangle
*/

/**
Expand Down

0 comments on commit 0976a12

Please sign in to comment.