mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
12 lines
212 B
Go
12 lines
212 B
Go
export declare global {
|
|
interface DataCollection extends BaseModel {
|
|
name?: string;
|
|
fields?: DataField[];
|
|
dedup?: {
|
|
enabled?: boolean;
|
|
keys?: string[];
|
|
type?: string;
|
|
};
|
|
}
|
|
}
|