@revenuecat/purchases-ui-js
Version:
Web components for Paywalls. Powered by RevenueCat
10 lines (9 loc) • 313 B
TypeScript
import type { ImageProps } from "../../types/components/image";
interface ClipPathProps {
shape: ImageProps["mask_shape"];
width: number;
height: number;
}
declare const ClipPath: import("svelte").Component<ClipPathProps, {}, "">;
type ClipPath = ReturnType<typeof ClipPath>;
export default ClipPath;