UNPKG

545 BTypeScriptView Raw
1export interface CommentSettings {
2 /**
3 * Enable comment box
4 */
5 commentBox: boolean;
6 /**
7 * Enable facebook comment box
8 */
9 fbComments: boolean;
10 /**
11 * Enable disqus comment box
12 */
13 disqusComments: boolean;
14 /**
15 * Disqus comment config
16 */
17 disqusConfig: {
18 title?: string;
19 language: string;
20 };
21 /**
22 * Facebook comments default markup
23 */
24 commentsMarkup: string;
25}
26export declare const commentSettings: CommentSettings;