@refinio/one.ui
    Preparing search index...

    Type Alias EventInformation

    type EventInformation = {
        addonRenderFn: (
            entry: JournalEntry,
        ) => React.ReactElement | void | undefined | null;
        author: SHA256IdHash<Person> | undefined;
        hour: string;
        icon?: React.ReactElement;
        minutes: string;
        owner?: SHA256IdHash<Person>;
        rowRenderFn?: (entry: JournalEntry) => React.ReactElement;
        titleRenderFn: (data: unknown) => React.ReactElement;
        type: string;
    }
    Index

    Properties

    addonRenderFn: (
        entry: JournalEntry,
    ) => React.ReactElement | void | undefined | null
    author: SHA256IdHash<Person> | undefined
    hour: string
    icon?: React.ReactElement
    minutes: string
    owner?: SHA256IdHash<Person>
    rowRenderFn?: (entry: JournalEntry) => React.ReactElement
    titleRenderFn: (data: unknown) => React.ReactElement
    type: string