mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
Fixed lint errors and add lint fix script
This commit is contained in:
@@ -1,28 +1,28 @@
|
||||
import { Config } from './config.interface';
|
||||
|
||||
interface AutosaveConfig extends Config {
|
||||
metadata: string[],
|
||||
timer: number
|
||||
metadata: string[];
|
||||
timer: number;
|
||||
}
|
||||
|
||||
interface IconsConfig extends Config {
|
||||
metadata: MetadataIconConfig[],
|
||||
metadata: MetadataIconConfig[];
|
||||
authority: {
|
||||
confidence: ConfidenceIconConfig[];
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
export interface MetadataIconConfig extends Config {
|
||||
name: string,
|
||||
name: string;
|
||||
style: string;
|
||||
}
|
||||
|
||||
export interface ConfidenceIconConfig extends Config {
|
||||
value: any,
|
||||
value: any;
|
||||
style: string;
|
||||
}
|
||||
|
||||
export interface SubmissionConfig extends Config {
|
||||
autosave: AutosaveConfig,
|
||||
icons: IconsConfig
|
||||
autosave: AutosaveConfig;
|
||||
icons: IconsConfig;
|
||||
}
|
||||
|
Reference in New Issue
Block a user