UNPKG

liferay-npm-bundler-preset-reactjs

Version:

liferay npm bundler preset react

18 lines (17 loc) 609 B
/** * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com> * SPDX-License-Identifier: LGPL-3.0-or-later */ /** * Return negated glob or list of glob expressions. * @param globs list of globs or single glob expression * @return negated list of globs or single glob expression */ export declare function negate<T extends string | string[]>(globs: T): T; /** * Return a list of globs prefixed with a token. * @param prefix the prefix to add * @param globs list of globs * @return the list of prefixed globs */ export declare function prefix(prefix: string, globs: string[]): string[];