mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-02 11:32:27 +02:00
45 lines
1015 B
TypeScript
45 lines
1015 B
TypeScript
export const ExtensionState = {
|
|
PagesView: `frontMatter:Pages:ViewType`,
|
|
SelectedFolder: `frontMatter:SelectedFolder`,
|
|
Version: `frontMatter:Version`,
|
|
SettingPromoted: `frontMatter:Settings:Promoted`,
|
|
MoveTemplatesFolder: `frontMatter:Templates:Move`,
|
|
|
|
Project: {
|
|
current: `frontMatter:Project:current`
|
|
},
|
|
|
|
Dashboard: {
|
|
Contents: {
|
|
Sorting: `frontMatter:Dashboard:Contents:Sorting`
|
|
},
|
|
Media: {
|
|
Sorting: `frontMatter:Dashboard:Media:Sorting`
|
|
},
|
|
Pages: {
|
|
Cache: `frontMatter:Dashboard:Pages:Cache`,
|
|
Index: `frontMatter:Dashboard:Pages:Index`
|
|
}
|
|
},
|
|
|
|
Settings: {
|
|
Extends: `frontMatter:Settings:Extends`
|
|
},
|
|
|
|
Updates: {
|
|
v7_0_0: {
|
|
dateFields: `frontMatter:Updates:v7.0.0:dateFields`
|
|
}
|
|
},
|
|
|
|
Secrets: {
|
|
Deepl: {
|
|
ApiKey: `frontMatter:Secrets:DeeplApiKey`
|
|
},
|
|
Azure: {
|
|
TranslatorKey: `frontMatter:Secrets:AzureTranslatorKey`,
|
|
TranslatorRegion: `frontMatter:Secrets:AzureTranslatorRegion`
|
|
}
|
|
}
|
|
};
|