/** * @author [Tristan Valcke]{@link https://github.com/Itee} * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause} * * @module sources/file-system * @description This is the files system main export entry point. * It expose all exports of the files system validators. * */ export * from './block-devices/_blockDevices' export * from './character-devices/_characterDevices' export * from './directories/_directories' export * from './fifo-pipes/_fifoPipes' export * from './files/_files' export * from './paths/_paths' export * from './sockets/_sockets' export * from './symbolic-links/_symbolicLinks'