tape-slider
Version:
simple way ever to make your website interactive add tape slider for your website
11 lines (7 loc) • 365 B
text/typescript
import { ITapeSliderOptions } from './api/ITapeSliderOptions';
import { TapeSlider } from './TapeSlider';
import { TapeSliderOptions } from './TapeSliderOptions';
export const make = function (selector: string, options: ITapeSliderOptions): TapeSlider {
console.log(this);
return new TapeSlider(selector, new TapeSliderOptions(options));
}