mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 19:42:34 -06:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
export class simpleArc {
|
|
constructor(opts: any);
|
|
x: any;
|
|
y: any;
|
|
radius: any;
|
|
pathSegment(ctx: any, bounds: any, opts: any): boolean;
|
|
interpolate(point: any): {
|
|
x: any;
|
|
y: any;
|
|
angle: any;
|
|
};
|
|
}
|