@rgwch/mayan_edms-api
    Preparing search index...

    Type Alias MayanResult<T>

    Result of various listXXX() API calls.

    type MayanResult<T> = {
        count: number;
        next: string | null;
        previous: string | null;
        results: T[];
    }

    Type Parameters

    • T
    Index

    Properties

    count: number
    next: string | null
    previous: string | null
    results: T[]