UNPKG

724 BTypeScriptView Raw
1export interface CommentStrings {
2 toggleComments: string;
3}
4export interface CommentSettings {
5 /**
6 * Enable comment box
7 */
8 commentBox: boolean;
9 /**
10 * Enable facebook comment box
11 */
12 fbComments: boolean;
13 /**
14 * Enable disqus comment box
15 */
16 disqusComments: boolean;
17 /**
18 * Disqus comment config
19 */
20 disqusConfig: {
21 title?: string;
22 language: string;
23 };
24 /**
25 * Facebook comments default markup
26 */
27 commentsMarkup: string;
28 /**
29 * Custom translation strings for aria-labels
30 */
31 commentPluginStrings: CommentStrings;
32}
33export declare const commentSettings: CommentSettings;