mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-10 11:34:18 -07:00
- aligns superscript position - adds intl.plural rules fn to add ordinal superscripts - updates units tests - updates snapshot
33 lines
925 B
TypeScript
33 lines
925 B
TypeScript
declare namespace MapModuleScssNamespace {
|
|
export interface IMapModuleScss {
|
|
areaDetailContainer: string;
|
|
topRow:string;
|
|
cumulativeIndexScore:string;
|
|
scoreSuperscript: string;
|
|
topRowTitle:string;
|
|
topRowSubTitle:string;
|
|
categorization:string;
|
|
prioritized:string;
|
|
threshold:string;
|
|
nonPrioritized:string;
|
|
priority:string;
|
|
prioritization:string;
|
|
censusRow:string;
|
|
censusText: string;
|
|
censusLabel:string;
|
|
divider:string;
|
|
indicatorBox:string;
|
|
indicatorTitle:string;
|
|
indicatorDescription:string;
|
|
indicatorValue:string;
|
|
score:string;
|
|
indicatorSuperscript: string;
|
|
}
|
|
}
|
|
|
|
declare const MapModuleScssModule: MapModuleScssNamespace.IMapModuleScss & {
|
|
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
|
|
locals: MapModuleScssNamespace.IMapModuleScss;
|
|
};
|
|
|
|
export = MapModuleScssModule;
|