@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
12 lines • 563 B
TypeScript
//#region src/createDictionaryEntryPoint/createDictionaryEntryPoint.d.ts
type CreateDictionaryEntryPointOptions = {
formats?: ('cjs' | 'esm')[];
excludeKeys?: string[];
};
/**
* This function generates a list of dictionaries in the main directory
*/
declare const createDictionaryEntryPoint: (configuration?: import("@intlayer/types").IntlayerConfig, options?: CreateDictionaryEntryPointOptions) => Promise<void>;
//#endregion
export { CreateDictionaryEntryPointOptions, createDictionaryEntryPoint };
//# sourceMappingURL=createDictionaryEntryPoint.d.ts.map