Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
10 lines
298 B
Plaintext
10 lines
298 B
Plaintext
import { IPath, Path, PathType } from './path';
|
|
export declare class Vector implements IPath {
|
|
type: PathType;
|
|
x: number;
|
|
y: number;
|
|
constructor(x: number, y: number);
|
|
add(deltaX: number, deltaY: number): Vector;
|
|
}
|
|
export declare const isVector: (path: Path) => path is Vector;
|