Files
smartnpm/ts/smartnpm.interfaces.ts

25 lines
413 B
TypeScript
Raw Permalink Normal View History

2017-08-15 17:03:21 +02:00
export interface ISearchObject {
// name
2018-09-01 16:40:42 +02:00
name?: string;
2017-08-15 17:03:21 +02:00
// metadata
2018-09-01 16:40:42 +02:00
author?: string;
maintainer?: string;
scope?: string;
keywords?: string[];
2017-08-15 17:03:21 +02:00
// status
2018-09-01 16:40:42 +02:00
deprecated?: boolean;
unstable?: boolean;
insecure?: boolean;
2017-08-15 17:03:21 +02:00
// search behaviour
2018-09-01 16:40:42 +02:00
boostExact?: boolean;
scoreEffect?: number;
2017-08-15 17:03:21 +02:00
// Analytics
2018-09-01 16:40:42 +02:00
qualityWeight?: number;
popularityWeight?: number;
maintenanceWeight?: number;
2017-08-15 17:03:21 +02:00
}