Type Alias: PdfStructureAttributeValue
type PdfStructureAttributeValue =
| string
| number
| boolean
| {
name: string;
}
| readonly PdfStructureAttributeValue[];
Values accepted in tagged PDF structure attribute dictionaries.
Union Members
string number boolean
Type Literal
{
name: string;
}
name
readonly name: string;
Name of the item, field, destination, or signer.
readonly PdfStructureAttributeValue[]