增加了randomRange的定义
This commit is contained in:
parent
785c3c78de
commit
885a4c8e9d
|
|
@ -57,7 +57,9 @@ export declare type Selection<A extends ReadOnlyAction, D extends Projection, F
|
|||
action?: A;
|
||||
data: D;
|
||||
sorter?: S;
|
||||
} & FilterPart<A, F>;
|
||||
} & FilterPart<A, F> & {
|
||||
randomRange?: number;
|
||||
};
|
||||
export interface EntityShape {
|
||||
id: PrimaryKey;
|
||||
$$seq$$: Sequence;
|
||||
|
|
|
|||
|
|
@ -71,7 +71,9 @@ export type Selection<A extends ReadOnlyAction,
|
|||
action?: A;
|
||||
data: D;
|
||||
sorter?: S;
|
||||
} & FilterPart<A, F>;
|
||||
} & FilterPart<A, F> & {
|
||||
randomRange?: number;
|
||||
};
|
||||
|
||||
export interface EntityShape {
|
||||
id: PrimaryKey;
|
||||
|
|
|
|||
Loading…
Reference in New Issue