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