@cedx/akismet
Version:
Prevent comment spam using the Akismet service.
22 lines • 513 B
TypeScript
/**
* Specifies the result of a comment check.
*/
export declare const CheckResult: Readonly<{
/**
* The comment is not a spam (i.e. a ham).
*/
ham: 0;
/**
* The comment is a spam.
*/
spam: 1;
/**
* The comment is a pervasive spam (i.e. it can be safely discarded).
*/
pervasiveSpam: 2;
}>;
/**
* Specifies the result of a comment check.
*/
export type CheckResult = typeof CheckResult[keyof typeof CheckResult];
//# sourceMappingURL=check_result.d.ts.map