feat: Extend settings interface for comment layout

This commit is contained in:
barkstone 2024-12-09 20:41:35 +09:00 committed by barkstone2
parent 165d1838f8
commit 64bda4f0d0

View file

@ -13,6 +13,8 @@ export interface VaultToBlogSettings {
isActivated: boolean;
version: string;
isEnableComments: boolean;
repo: string;
theme: string;
}
const DEFAULT_SETTINGS: VaultToBlogSettings = {
@ -21,6 +23,8 @@ const DEFAULT_SETTINGS: VaultToBlogSettings = {
isActivated: false,
version: '0.0.1',
isEnableComments: false,
repo: '',
theme: ''
};
export default class VaultToBlog extends Plugin {