An optional PDF object associated with the document.

const options = {
str: 'string',
isHex: true,
key: value
};
interface Options {
    isHex?: boolean;
    str: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

isHex?: boolean

Whether the string is hexadecimal (optional).

str: string

The string to be set.