quarkd
Version:
Mobile UI Components built on Web Components.
10 lines (9 loc) • 361 B
TypeScript
export interface Props {
disabled?: boolean;
name?: string | number;
leftwidth?: number;
rightwdith?: number;
}
export declare type SwipeCellSide = "left" | "right";
export declare type SwipeCellPosition = SwipeCellSide | "cell" | "outside";
export declare type BeforeCloseFunc = (...args: any) => Promise<boolean> | boolean | undefined | void;