mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-08 17:46:45 +05:30
13 lines
469 B
TypeScript
13 lines
469 B
TypeScript
import { tool as pngCompressPng } from './compress-png/meta';
|
|
import { tool as convertJgpToPng } from './convert-jgp-to-png/meta';
|
|
import { tool as pngCreateTransparent } from './create-transparent/meta';
|
|
import { tool as changeColorsInPng } from './change-colors-in-png/meta';
|
|
import { tool as changeOpacity } from './change-opacity/meta';
|
|
|
|
export const pngTools = [
|
|
pngCompressPng,
|
|
pngCreateTransparent,
|
|
changeColorsInPng,
|
|
convertJgpToPng,
|
|
changeOpacity
|
|
];
|