Renommage classe gérant les filtres de données via SELECT

This commit is contained in:
Fabrice PENHOËT 2021-10-20 17:44:25 +02:00
parent 0c842e9d03
commit 188b475c0e
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import { ParserForCSV} from "./ParserForCSV";
import { ParserForHTML} from "./ParserForHTML";
import { ParserForJSON} from "./ParserForJSON";
import { Render} from "./Render";
import { Selector } from "./freeDatas2HTMLSelector";
import { Selector } from "./Selector";
import { SortingField } from "./SortingField";
export class FreeDatas2HTML
@ -240,5 +240,5 @@ export class FreeDatas2HTML
// Permet l'appel des dépendances via un seul script
export { Pagination } from "./Pagination";
export { Render} from "./Render";
export { Selector } from "./freeDatas2HTMLSelector";
export { Selector } from "./Selector";
export { SortingField } from "./SortingField";