mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-19 09:35:42 +02:00
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
export interface GitSettings {
|
|
isGitRepo: boolean;
|
|
actions: boolean;
|
|
disabledBranches: string[];
|
|
requiresCommitMessage: string[];
|
|
}
|