mirror of
https://github.com/youzan/vant.git
synced 2025-10-16 16:04:04 +00:00
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
import { VanComponent } from './component';
|
|
|
|
export class SwipeCell extends VanComponent {
|
|
open(position: 'left' | 'right'): void;
|
|
close(): void;
|
|
}
|