rounded.d.ts 210 B

12345
  1. import { Connector } from './index';
  2. export interface RoundedConnectorOptions extends Connector.BaseOptions {
  3. radius?: number;
  4. }
  5. export declare const rounded: Connector.Definition<RoundedConnectorOptions>;