@kaspersky/dev-tools
Version:
Development tools and configs for Babel, ESLint and TypeScript
16 lines (15 loc) • 575 B
TypeScript
export let removeUndesiredFontFamily: (pathToFolder: any) => Promise<void>;
export let jsonPatcher: ({ file, buildTarget }: {
file: any;
buildTarget?: string;
}) => any;
export let buildUi: typeof import("./build-ui");
export let initFeatureRegistry: (featureFlagConfigMapPath?: string) => {
isPluginServerFeatureEnabled: ({ featureName }: {
featureName: any;
}) => boolean;
isPluginUserFeatureEnabled: ({ featureName }: {
featureName: any;
}, connection: any) => boolean;
};
export let toInstrument: typeof import("./to-instrument");