Skip to content
Snippets Groups Projects
Commit 0bd7d27b authored by Rhys Arkins's avatar Rhys Arkins
Browse files

chore: type -> interface

parent 750cd302
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,8 @@ export type RepoConfigError = { ...@@ -3,8 +3,8 @@ export type RepoConfigError = {
validationMessage: string; validationMessage: string;
}; };
export type RepoFileConfig = { export interface RepoFileConfig {
fileName?: string; fileName?: string;
config?: any; config?: any;
error?: RepoConfigError; error?: RepoConfigError;
}; }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment