11 lines
467 B
TypeScript
11 lines
467 B
TypeScript
import { DSQL_DATASQUIREL_PROCESS_QUEUE } from "../../../types/dsql";
|
|
import { DsqlCrudQueryObject } from "../../../types";
|
|
type Param = {
|
|
queueId?: string | number;
|
|
userId?: string | number;
|
|
query?: DsqlCrudQueryObject<DSQL_DATASQUIREL_PROCESS_QUEUE>;
|
|
single?: boolean;
|
|
};
|
|
export default function getQueue({ queueId, userId, query, single, }: Param): Promise<DSQL_DATASQUIREL_PROCESS_QUEUE | DSQL_DATASQUIREL_PROCESS_QUEUE[] | undefined>;
|
|
export {};
|