@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
81 lines (80 loc) • 2.19 kB
TypeScript
export declare namespace Constants {
namespace FilterNameMap {
const grayscale: string;
const invert: string;
const sepia: string;
const blur: string;
const sharpen: string;
const emboss: string;
const removeWhite: string;
const brightness: string;
const contrast: string;
const saturation: string;
const vintage: string;
const noise: string;
const pixelate: string;
const colorFilter: string;
}
namespace DefaultFilterRangeValus {
const tintOpacityRange: {
min: number;
max: number;
step: number;
value: number;
};
const removewhiteDistanceRange: {
min: number;
max: number;
step: number;
value: number;
};
const brightnessRange: {
min: number;
max: number;
step: number;
value: number;
};
const noiseRange: {
min: number;
max: number;
step: number;
value: number;
};
const pixelateRange: {
min: number;
max: number;
step: number;
value: number;
};
const colorfilterThresholeRange: {
min: number;
max: number;
step: number;
value: number;
};
}
namespace Styles {
const wrapperStyle: string;
const wrapperResponsive: string;
const svgContainer: string;
const svgdef: string;
}
namespace NamespacesURI {
const svgURI = "http://www.w3.org/2000/svg";
const svgType = "image/svg+xml";
const xlink = "http://www.w3.org/1999/xlink";
}
namespace FilterTemplate {
const gaussianblur: string;
const componentTransfer: string;
const saturate: string;
const huerotate: string;
const erode: string;
const dilate: string;
const sepia: string;
const grayscale: string;
}
namespace Utils {
const transfomerConfigKeys: string[];
}
}