Zamok Kiosk API
    Preparing search index...
    interface PaginatePayload {
        limit: number;
        orderBy: {
            nextStartAt: (lastLog: LoadedLog) => any;
            query: { direction: "desc" | "asc"; field: string };
        };
        statePath?: string;
        type: string;
        where?: { field: string; opStr: WhereFilterOp; value: any }[];
    }
    Index

    Properties

    limit: number
    orderBy: {
        nextStartAt: (lastLog: LoadedLog) => any;
        query: { direction: "desc" | "asc"; field: string };
    }
    statePath?: string
    type: string
    where?: { field: string; opStr: WhereFilterOp; value: any }[]