mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 05:50:43 -07:00
## [7.2.2](https://github.com/harttle/liquidjs/compare/v7.2.1...v7.2.2) (2019-02-23)
### Bug Fixes
* filters break when argument contains [()|, fixes [#89](https://github.com/harttle/liquidjs/issues/89) ([e977669](https://github.com/harttle/liquidjs/commit/e977669))
44 lines
929 B
TypeScript
44 lines
929 B
TypeScript
declare const _default: ({
|
|
output: {
|
|
file: string;
|
|
name: string;
|
|
format: string;
|
|
sourcemap: boolean;
|
|
banner: string;
|
|
}[];
|
|
external: string[];
|
|
plugins: import("rollup").Plugin[];
|
|
treeshake: {
|
|
propertyReadSideEffects: boolean;
|
|
};
|
|
input: string;
|
|
} | {
|
|
output: {
|
|
file: string;
|
|
name: string;
|
|
format: string;
|
|
sourcemap: boolean;
|
|
banner: string;
|
|
}[];
|
|
plugins: any[];
|
|
treeshake: {
|
|
propertyReadSideEffects: boolean;
|
|
};
|
|
input: string;
|
|
external?: undefined;
|
|
} | {
|
|
output: {
|
|
file: string;
|
|
name: string;
|
|
format: string;
|
|
sourcemap: boolean;
|
|
}[];
|
|
plugins: any[];
|
|
treeshake: {
|
|
propertyReadSideEffects: boolean;
|
|
};
|
|
input: string;
|
|
external?: undefined;
|
|
})[];
|
|
export default _default;
|