mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
|
export interface ICollection {
|
||
|
fields?: object;
|
||
|
filter?: object;
|
||
|
limit?: number;
|
||
|
skip?: number;
|
||
|
sort?: object;
|
||
|
populate?: boolean;
|
||
|
simple?: boolean;
|
||
|
lang?: string;
|
||
|
data?: object;
|
||
|
}
|