mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
import { Options } from "ez-plus";
|
|
|
|
$(document).ready(() => {
|
|
// basic usage
|
|
$('#image').ezPlus();
|
|
|
|
// with options
|
|
const options: Options = {
|
|
zoomLens: true,
|
|
zoomType: 'lens',
|
|
cursor: 'crosshair'
|
|
};
|
|
$('#image').ezPlus(options);
|
|
});
|