@intlayer/chokidar
Version:
Scans and builds Intlayer declaration files into dictionaries based on Intlayer configuration.
17 lines (16 loc) • 573 B
TypeScript
import { IntlayerConfig } from "@intlayer/types/config";
import { GetConfigurationOptions } from "@intlayer/config/node";
//#region src/watcher.d.ts
type WatchOptions = {
configuration?: IntlayerConfig;
configOptions?: GetConfigurationOptions;
skipPrepare?: boolean;
persistent?: boolean;
};
declare const watch: (options?: WatchOptions) => Promise<{
unsubscribe: () => Promise<void>;
}[]>;
declare const buildAndWatchIntlayer: (options?: WatchOptions) => Promise<void>;
//#endregion
export { buildAndWatchIntlayer, watch };
//# sourceMappingURL=watcher.d.ts.map