@openmrs/esm-styleguide
Version:
The styleguide for OpenMRS SPA
24 lines (23 loc) • 675 B
TypeScript
import { type ConfigSchema } from '@openmrs/esm-config';
import { type CarbonTagColor } from './utils';
export interface StyleguideConfigObject {
'Brand color #1': string;
'Brand color #2': string;
'Brand color #3': string;
excludePatientIdentifierCodeTypes: {
uuids: Array<string>;
};
implementationName: string;
patientPhotoConceptUuid: string;
preferredCalendar: {
[key: string]: string;
};
preferredDateLocale: {
[key: string]: string;
};
diagnosisTags: {
primaryColor: CarbonTagColor;
secondaryColor: CarbonTagColor;
};
}
export declare const esmStyleGuideSchema: ConfigSchema;