mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
* fix: 优化类型提示 * fix: 添加 enums 接口类型声明 * feat: 配置插件api提示 Co-authored-by: wanchun <445436867@qq.com>
28 lines
680 B
TypeScript
28 lines
680 B
TypeScript
import '@fesjs/fes';
|
|
|
|
interface WatermarkParam {
|
|
content: string;
|
|
container: HTMLElement;
|
|
width: number;
|
|
height: number;
|
|
textAlign: 'left' | 'right' | 'center' | 'start' | 'end';
|
|
textBaseline: 'top' | 'hanging' | 'middle' | 'alphabetic' | 'ideographic' | 'bottom';
|
|
fontSize: string;
|
|
fontFamily: string;
|
|
fillStyle: string;
|
|
rotate: number;
|
|
zIndex: number;
|
|
timestamp: string;
|
|
}
|
|
|
|
declare module '@fesjs/fes' {
|
|
interface PluginBuildConfig {
|
|
watermark?: {
|
|
disable: boolean;
|
|
} | false;
|
|
}
|
|
|
|
export function createWatermark(param: WatermarkParam): void;
|
|
export function destroyWatermark(): void;
|
|
}
|