@willwade/aac-processors
    Preparing search index...

    Interface AACTreeMetadata

    Generic metadata interface for AAC files All processors can extend this with their specific properties

    interface AACTreeMetadata {
        author?: string;
        copyright?: string;
        dashboardId?: string;
        defaultHomePageId?: string;
        defaultKeyboardPageId?: string;
        description?: string;
        format?: string;
        hasGlobalToolbar?: boolean;
        homepageUrl?: string;
        id?: string;
        languages?: string[];
        locale?: string;
        name?: string;
        toolbarId?: string;
        url?: string;
        version?: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    author?: string
    copyright?: string
    dashboardId?: string
    defaultHomePageId?: string
    defaultKeyboardPageId?: string
    description?: string
    format?: string
    hasGlobalToolbar?: boolean
    homepageUrl?: string
    id?: string
    languages?: string[]
    locale?: string
    name?: string
    toolbarId?: string
    url?: string
    version?: string