25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bounce.d.ts 239 B

3 년 전
123456789
  1. import Scrollbar from 'smooth-scrollbar';
  2. export declare class Bounce {
  3. private _scrollbar;
  4. constructor(_scrollbar: Scrollbar);
  5. render({ x, y }: {
  6. x?: number | undefined;
  7. y?: number | undefined;
  8. }): void;
  9. }