@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
11 lines (10 loc) • 535 B
TypeScript
import { IntlayerConfig } from "@intlayer/types/config";
import { Dictionary } from "@intlayer/types/dictionary";
//#region src/buildIntlayerDictionary/processContentDeclaration.d.ts
/**
* Function to load, process the module and return the Intlayer Dictionary from the module file
*/
declare const processContentDeclaration: (contentDeclaration: Dictionary, configuration: IntlayerConfig) => Promise<Dictionary | undefined>;
//#endregion
export { processContentDeclaration };
//# sourceMappingURL=processContentDeclaration.d.ts.map