@tobyt/expo-pdf-markup - v0.6.1
    Preparing search index...

    Type Alias TextAnnotation

    type TextAnnotation = {
        bounds: AnnotationBounds;
        color: string;
        contents?: string;
        createdAt?: number;
        fontFamily?: string;
        fontSize?: number;
        id: string;
        page: number;
        type: "text" | "freeText";
    }
    Index

    Properties

    color: string
    contents?: string
    createdAt?: number
    fontFamily?: string

    Font family for the text annotation. Platform-specific:

    • iOS: PostScript name ("Georgia", "Courier") or undefined for system font (San Francisco)
    • Android: family name ("serif", "monospace") or undefined for default sans-serif
    • Web: CSS font family ("Georgia, serif") or undefined for sans-serif
    fontSize?: number
    id: string
    page: number
    type: "text" | "freeText"